summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstaticdev <staticdev-support@protonmail.com>2022-12-31 16:08:57 +0100
committerstaticdev <staticdev-support@protonmail.com>2022-12-31 16:08:57 +0100
commit64c983ece92b317fc67b4bdc867056ad08163c19 (patch)
tree4cc598f56ac9aee30de653b72e39ab7df08336c3
parent5c0b99cdc9233518f201cf25d1c402002aa3d297 (diff)
downloadisort-64c983ece92b317fc67b4bdc867056ad08163c19.tar.gz
Fix lint
-rw-r--r--.flake83
1 files changed, 2 insertions, 1 deletions
diff --git a/.flake8 b/.flake8
index a5e26e2c..2ca44a12 100644
--- a/.flake8
+++ b/.flake8
@@ -2,7 +2,8 @@
max-line-length = 100
# Ignore non PEP 8 compliant rules as suggested by black
extend-ignore =
- E203 # https://github.com/psf/black/blob/master/docs/the_black_code_style.md#slices
+ E203, # https://github.com/psf/black/blob/master/docs/the_black_code_style.md#slices
+ E501
exclude = _vendored
per-file-ignores =
isort/__init__.py:F401