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.
2 parents 25b5e6a + 490d471 commit 290911aCopy full SHA for 290911a
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