Enable the E123 closing bracket rule in flake8 (#2812)

This commit is contained in:
correctmost 2024-11-16 02:23:52 -05:00 committed by GitHub
parent a0d88f5ee2
commit c682ddf391
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
[flake8] [flake8]
count = True count = True
# Several of the following could be autofixed or improved by running the code through psf/black # Several of the following could be autofixed or improved by running the code through psf/black
ignore = E123,E128,E722,W191,W503,W504 ignore = E128,E722,W191,W503,W504
max-complexity = 40 max-complexity = 40
max-line-length = 220 max-line-length = 220
show-source = True show-source = True

View File

@ -1,5 +1,5 @@
on: [ push, pull_request ] on: [ push, pull_request ]
name: flake8 linting (6 ignores) name: flake8 linting (5 ignores)
jobs: jobs:
flake8: flake8:
runs-on: ubuntu-latest runs-on: ubuntu-latest