Skip to content
Please note that GitHub no longer supports your web browser.

We recommend upgrading to the latest Google Chrome or Firefox.

Learn more
Permalink
Browse files

Remove unused flake8 D203 exclusion (#1457)

D203 is now disabled by default in flake8, so a parsl
level exclusion isn't necessary any more.

See PyCQA/pydocstyle#141
  • Loading branch information
benclifford committed Nov 22, 2019
1 parent 3147991 commit f0a83e9a482eb857160f3a9f928a450535c3e190
Showing with 1 addition and 2 deletions.
  1. +1 −2 .flake8
@@ -1,5 +1,4 @@
[flake8]
# D203: 1 blank line required before class docstring
# E124: closing bracket does not match visual indentation
# E126: continuation line over-indented for hanging indent
# This one is bad. Sometimes ordering matters, conditional imports
@@ -9,7 +8,7 @@
# https://github.com/PyCQA/pycodestyle/issues/386
# W504: line break after binary operator
# (Raised by flake8 even when it is followed)
ignore = D203, E124, E126, E402, E129, W504
ignore = E124, E126, E402, E129, W504
max-line-length = 160
exclude = parsl/executors/serialize/, test_import_fail.py
# E741 disallows ambiguous single letter names which look like numbers

0 comments on commit f0a83e9

Please sign in to comment.
You can’t perform that action at this time.