Skip to content

Commit

Permalink
type hints
Browse files Browse the repository at this point in the history
  • Loading branch information
stan-dot committed Oct 28, 2024
1 parent f414faf commit 4c6ae93
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion tests/unit_tests/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,16 @@ def test_config_yaml_parsed(temp_yaml_config_file):
],
indirect=True,
)
def test_config_yaml_parsed_complete(temp_yaml_config_file):
def test_config_yaml_parsed_complete(
temp_yaml_config_file: dict[
str,
dict[str, str | int | dict[str, str]]
| dict[str, dict[str, bool] | list[dict[str, str]]]
| dict[str, str | int]
| dict[str, str]
| dict[str, str | list[dict[str, str]]],
],
):
temp_yaml_file_path, config_data = temp_yaml_config_file

# Initialize loader and load config from the YAML file
Expand Down

0 comments on commit 4c6ae93

Please sign in to comment.