We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 550041e commit 3c41fe2Copy full SHA for 3c41fe2
tests/conftest.py
@@ -14,7 +14,7 @@ def tmp_shelloracle_home(monkeypatch, tmp_path):
14
def set_config(monkeypatch, tmp_shelloracle_home):
15
config_path = tmp_shelloracle_home / "config.toml"
16
17
- def _set_config(config: dict) -> Configuration:
+ def _set_config(config: dict) -> None:
18
with config_path.open("w") as f:
19
tomlkit.dump(config, f)
20
configuration = Configuration(config_path)
@@ -23,4 +23,3 @@ def _set_config(config: dict) -> Configuration:
23
yield _set_config
24
25
config_path.unlink()
26
-
0 commit comments