summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorherr kaste <herr.kaste@gmail.com>2022-11-11 23:59:52 +0100
committerherr kaste <herr.kaste@gmail.com>2023-02-08 15:53:41 +0100
commit924466e4f0fc04e356b121ca118bb223981d0c94 (patch)
tree06b8399d8a22d8d99b5a9d294b1bab80563796ea
parent35baed2f759f61edccbb0861d46f4f5f21d29623 (diff)
downloadisort-924466e4f0fc04e356b121ca118bb223981d0c94.tar.gz
Fix type of `_get_config_data`
-rw-r--r--isort/settings.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/isort/settings.py b/isort/settings.py
index b85779aa..24de2337 100644
--- a/isort/settings.py
+++ b/isort/settings.py
@@ -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"):