summaryrefslogtreecommitdiff
path: root/isort/profiles.py
diff options
context:
space:
mode:
Diffstat (limited to 'isort/profiles.py')
-rw-r--r--isort/profiles.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/isort/profiles.py b/isort/profiles.py
index 270b458d..669c8277 100644
--- a/isort/profiles.py
+++ b/isort/profiles.py
@@ -1,4 +1,5 @@
"""Common profiles are defined here to be easily used within a project using --profile {name}"""
+from typing import Any, Dict
black = {
"multi_line_output": 3,
@@ -43,7 +44,7 @@ hug = {
"line_length": 100,
}
-profiles = {
+profiles: Dict[str, Dict[str, Any]] = {
"black": black,
"django": django,
"pycharm": pycharm,