Skip to content

Commit fab2404

Browse files
committed
Update line_length and single_line_exclusions for google profile
1 parent 53b1f64 commit fab2404

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
@@ -24,7 +24,13 @@
2424
"force_single_line": True,
2525
"force_sort_within_sections": True,
2626
"lexicographical": True,
27-
"single_line_exclusions": ("typing",),
27+
"line_length": 1000,
28+
"single_line_exclusions": (
29+
"collections.abc",
30+
"six.moves",
31+
"typing",
32+
"typing_extensions",
33+
),
2834
"order_by_type": False,
2935
"group_by_package": True,
3036
}

0 commit comments

Comments
 (0)