From 0ac4fe1431fd04aa2645a4afc3d4d2fbfb21bb90 Mon Sep 17 00:00:00 2001 From: Maurits van Rees Date: Tue, 3 May 2022 11:34:53 +0200 Subject: [PATCH] Update plone profile: copy of black, plus three settings. Fixes https://github.com/PyCQA/isort/issues/1925 --- isort/profiles.py | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/isort/profiles.py b/isort/profiles.py index 21d064630..cf43ac0f2 100644 --- a/isort/profiles.py +++ b/isort/profiles.py @@ -33,12 +33,14 @@ "force_sort_within_sections": True, "lexicographical": True, } -plone = { - "force_alphabetical_sort": True, - "force_single_line": True, - "lines_after_imports": 2, - "line_length": 200, -} +plone = black.copy() +plone.update( + { + "force_alphabetical_sort": True, + "force_single_line": True, + "lines_after_imports": 2, + } +) attrs = { "atomic": True, "force_grid_wrap": 0,