summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy Edmund Crosley <timothy.crosley@gmail.com>2022-05-11 00:51:46 -0700
committerGitHub <noreply@github.com>2022-05-11 00:51:46 -0700
commit2cb757e31f99e36e45862772228280dd46681a61 (patch)
tree1700d4e8a0f7b2406ad68022cd90c10c2129e3d7
parentc6a41965247a858a0afd848fbebfca18b8983917 (diff)
parent0ac4fe1431fd04aa2645a4afc3d4d2fbfb21bb90 (diff)
downloadisort-2cb757e31f99e36e45862772228280dd46681a61.tar.gz
Merge pull request #1926 from mauritsvanrees/issue/1925
Update plone profile: copy of black, plus three settings.
-rw-r--r--isort/profiles.py14
1 files changed, 8 insertions, 6 deletions
diff --git a/isort/profiles.py b/isort/profiles.py
index 21d06463..cf43ac0f 100644
--- a/isort/profiles.py
+++ b/isort/profiles.py
@@ -33,12 +33,14 @@ open_stack = {
"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,