We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25b5e6a commit 490d471Copy full SHA for 490d471
tests/test_config.py
@@ -38,4 +38,5 @@ def test_jinja(self):
38
39
@pytest.mark.parametrize("config_file", (DATA_DIR / "config").iterdir())
40
def test_config_file(self, config_file):
41
- load(config_file.open())
+ with open(config_file) as file:
42
+ load(file)
0 commit comments