Skip to content

Commit

Permalink
Fix type of _get_config_data
Browse files Browse the repository at this point in the history
  • Loading branch information
kaste committed Feb 8, 2023
1 parent 0b0fe05 commit e19356f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion isort/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -825,7 +825,7 @@ def find_all_configs(path: str) -> Trie:
return trie_root


def _get_config_data(file_path: str, sections: Tuple[str]) -> Dict[str, Any]:
def _get_config_data(file_path: str, sections: Tuple[str, ...]) -> Dict[str, Any]:
settings: Dict[str, Any] = {}

if file_path.endswith(".toml"):
Expand Down

0 comments on commit e19356f

Please sign in to comment.