Skip to content

Commit

Permalink
make flake8 happy
Browse files Browse the repository at this point in the history
  • Loading branch information
d-maurer committed Feb 3, 2023
1 parent 8e66778 commit f7e27d2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/ZODB/scripts/zodbload.py
Expand Up @@ -227,7 +227,7 @@ def VmSize():
except: # noqa: E722 do not use bare 'except'
return 0
else:
l_ = list(filter(lambda l: l[:7] == 'VmSize:', lines))
l_ = list(filter(lambda l: l[:7] == 'VmSize:', lines)) # noqa: E741
if l_:
l_ = l_[0][7:].strip().split()[0]
return int(l_)
Expand Down
1 change: 0 additions & 1 deletion src/ZODB/tests/racetest.py
Expand Up @@ -536,4 +536,3 @@ def join(self, *args, **kw):
super(Daemon, self).join(*args, **kw)
if self.is_alive():
raise AssertionError("Thread %s did not stop" % self.name)

0 comments on commit f7e27d2

Please sign in to comment.