From 423dfcd2ec5aa4eab639e6fed0d5e65c9520ff22 Mon Sep 17 00:00:00 2001 From: Tom Hubrecht Date: Wed, 12 May 2021 01:26:24 +0200 Subject: [PATCH] fix isort --- setup.cfg | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/setup.cfg b/setup.cfg index cd19421..2aee773 100644 --- a/setup.cfg +++ b/setup.cfg @@ -10,13 +10,8 @@ ignore = W503 [isort] -# For black compat: https://github.com/ambv/black#how-black-wraps-lines -combine_as_imports = true -default_section = THIRDPARTY -force_grid_wrap = 0 -include_trailing_comma = true +profile = black known_django = django known_first_party = authens,tests line_length = 88 -multi_line_output = 3 -sections = FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER +sections = FUTURE,STDLIB,THIRDPARTY,DJANGO,FIRSTPARTY,LOCALFOLDER