Skip to content

Commit 3c41fe2

Browse files
committed
Fix type hint
1 parent 550041e commit 3c41fe2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/conftest.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def tmp_shelloracle_home(monkeypatch, tmp_path):
1414
def set_config(monkeypatch, tmp_shelloracle_home):
1515
config_path = tmp_shelloracle_home / "config.toml"
1616

17-
def _set_config(config: dict) -> Configuration:
17+
def _set_config(config: dict) -> None:
1818
with config_path.open("w") as f:
1919
tomlkit.dump(config, f)
2020
configuration = Configuration(config_path)
@@ -23,4 +23,3 @@ def _set_config(config: dict) -> Configuration:
2323
yield _set_config
2424

2525
config_path.unlink()
26-

0 commit comments

Comments
 (0)