Skip to content

Commit 1345130

Browse files
committed
Fix code linter
1 parent f18a89b commit 1345130

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)