Skip to content

Commit

Permalink
flake8 fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
wjakob committed Feb 4, 2019
1 parent ccbe68b commit 25abf7e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,6 @@ show_source = True
exclude = .git, __pycache__, build, dist, docs, tools, venv
ignore =
# required for pretty matrix formatting: multiple spaces after `,` and `[`
E201, E241, W504
E201, E241, W504,
# camelcase 'cPickle' imported as lowercase 'pickle'
N813
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def __enter__(self):
self.capfd.readouterr()
return self

def __exit__(self, *_):
def __exit__(self, *args):
self.out, self.err = self.capfd.readouterr()

def __eq__(self, other):
Expand Down

0 comments on commit 25abf7e

Please sign in to comment.