From fab2404a719a412334761751ca9db6e190a7ba08 Mon Sep 17 00:00:00 2001 From: John Agapiou Date: Fri, 29 Sep 2023 10:07:45 +0100 Subject: [PATCH] Update line_length and single_line_exclusions for google profile --- isort/profiles.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/isort/profiles.py b/isort/profiles.py index cf43ac0f2..321484977 100644 --- a/isort/profiles.py +++ b/isort/profiles.py @@ -24,7 +24,13 @@ "force_single_line": True, "force_sort_within_sections": True, "lexicographical": True, - "single_line_exclusions": ("typing",), + "line_length": 1000, + "single_line_exclusions": ( + "collections.abc", + "six.moves", + "typing", + "typing_extensions", + ), "order_by_type": False, "group_by_package": True, }