Skip to content

Commit

Permalink
Fix flake8 errors (#1235)
Browse files Browse the repository at this point in the history
  • Loading branch information
rly authored May 15, 2020
1 parent dad658a commit 533d5af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pynwb/legacy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ def _dec(cls):
_dec(mapper_cls)


from . import io # noqa: F401
from . import io # noqa: F401,E402
2 changes: 1 addition & 1 deletion tests/coloredtestrunner.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def __len__(self, x):
return len(re.sub(r"\033\[[0-9];[0-9];[0-9]{1,2}m", "", x))

def addRow(self, row):
rows = [[''] for l in range(len(row))]
rows = [[''] for i in range(len(row))]
maxrows = 0
for i, x in enumerate(row):
for j, y in enumerate(x.split("\n")):
Expand Down

0 comments on commit 533d5af

Please sign in to comment.