Skip to content

Commit 0bd2403

Browse files
authored
Merge pull request #2149 from jagapiou/google
Update line_length and single_line_exclusions in google profile
2 parents 3cc44e8 + fab2404 commit 0bd2403

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

isort/profiles.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,13 @@
2525
"force_single_line": True,
2626
"force_sort_within_sections": True,
2727
"lexicographical": True,
28-
"single_line_exclusions": ("typing",),
28+
"line_length": 1000,
29+
"single_line_exclusions": (
30+
"collections.abc",
31+
"six.moves",
32+
"typing",
33+
"typing_extensions",
34+
),
2935
"order_by_type": False,
3036
"group_by_package": True,
3137
}

0 commit comments

Comments
 (0)