summaryrefslogtreecommitdiff
path: root/isort/profiles.py
diff options
context:
space:
mode:
Diffstat (limited to 'isort/profiles.py')
-rw-r--r--isort/profiles.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/isort/profiles.py b/isort/profiles.py
index 1210c8ef..910da935 100644
--- a/isort/profiles.py
+++ b/isort/profiles.py
@@ -15,7 +15,12 @@ django = {
"line_length": 79,
}
pycharm = {"multi_line_output": 3, "force_grid_wrap": 2}
-google = {"force_single_line": True, "force_sort_within_sections": True, "lexicographical": True}
+google = {
+ "force_single_line": True,
+ "force_sort_within_sections": True,
+ "lexicographical": True,
+ "single_line_exclusions": ("typing",),
+}
open_stack = {
"force_single_line": True,
"force_sort_within_sections": True,