Skip to content

Commit 3cc569f

Browse files
committed
Fix code linter
(cherry picked from commit bdc8706)
1 parent e71824a commit 3cc569f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.flake8

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ ignore =
1818
W503,
1919
# N818: exception name should be named with an Error suffix
2020
N818
21+
# B042: Exception class with `__init__` should pass all args to `super().__init__()` in order to work with `copy.copy()`.
22+
# Affected by false positive, https://github.com/PyCQA/flake8-bugbear/issues/525
23+
B042
2124
exclude =
2225
.tox,
2326
.git,

0 commit comments

Comments
 (0)