Skip to content

Commit 25abf7e

Browse files
committed
flake8 fixes
1 parent ccbe68b commit 25abf7e

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

setup.cfg

+3-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,6 @@ show_source = True
77
exclude = .git, __pycache__, build, dist, docs, tools, venv
88
ignore =
99
# required for pretty matrix formatting: multiple spaces after `,` and `[`
10-
E201, E241, W504
10+
E201, E241, W504,
11+
# camelcase 'cPickle' imported as lowercase 'pickle'
12+
N813

tests/conftest.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def __enter__(self):
7575
self.capfd.readouterr()
7676
return self
7777

78-
def __exit__(self, *_):
78+
def __exit__(self, *args):
7979
self.out, self.err = self.capfd.readouterr()
8080

8181
def __eq__(self, other):

0 commit comments

Comments
 (0)