Skip to content

Commit

Permalink
Fix flake8 checking
Browse files Browse the repository at this point in the history
Also fix an issue caught by flake8
  • Loading branch information
tbekolay committed Apr 24, 2019
1 parent b5b301c commit 69404da
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .nengobones.yml
Expand Up @@ -47,7 +47,7 @@ ci_scripts:
pip_install:
- flake8
post_commands:
- flake8 nengo
- flake8 nengo_loihi
- flake8 --ignore=E226,E703,W391,W503 docs
- template: deploy

Expand Down
2 changes: 1 addition & 1 deletion nengo_loihi/tests/test_examples.py
Expand Up @@ -5,7 +5,7 @@
from nengo.utils.stdlib import execfile
try:
from nengo.utils.ipython import iter_cells, load_notebook
except ImportError as err:
except ImportError:
def iter_cells(nb, cell_type="code"):
return (cell for cell in nb.cells if cell.cell_type == cell_type)

Expand Down

0 comments on commit 69404da

Please sign in to comment.