Skip to content

Commit

Permalink
chore: simplify isort config by using the profile for black (#1595)
Browse files Browse the repository at this point in the history
* chore: simplify isort config by using the profile for black

* docs: add info to CHANGES

Co-authored-by: Sijis Aviles <sijis.aviles+github@gmail.com>
  • Loading branch information
browniebroke and sijis authored Sep 22, 2022
1 parent 2bb754b commit fd9541b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ fixes:
- chore: remove campfire references (#1584)
- chore/setup: fix exception when installing on python <3.7 (#1585)
- docs: typos (#1589, #1594)
- chore: simplify isort config using black (#1595)


v6.1.9 (2022-06-11)
Expand Down
7 changes: 1 addition & 6 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,4 @@ ignore = E741,E722
exclude = errbot/config-template.py, tests/config-ci.py

[isort]
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
ensure_newline_before_comments = True
line_length = 88
profile = black
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ commands =
[testenv:sort]
deps =
isort
commands = isort --check-only --profile=black errbot/
commands = isort --check-only errbot/

[testenv:security]
deps =
Expand Down

0 comments on commit fd9541b

Please sign in to comment.