We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f18a89b commit 1345130Copy full SHA for 1345130
.flake8
@@ -18,6 +18,9 @@ ignore =
18
W503,
19
# N818: exception name should be named with an Error suffix
20
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
24
exclude =
25
.tox,
26
.git,
0 commit comments