Skip to content

Commit

Permalink
Fixing flake8 errors after merge
Browse files Browse the repository at this point in the history
  • Loading branch information
gracinet committed Nov 4, 2018
1 parent dfaf96c commit 8320419
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion anyblok_wms_examples/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@


def init_config(**kw):
from .launcher import config # flake8: noqa
from .launcher import config # noqa
3 changes: 2 additions & 1 deletion anyblok_wms_examples/basic/tests/test_regular_worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,8 @@ def test_process_unpack(self):
orig_commit = regular.registry.commit
regular.registry.commit = lambda: None
try:
self.assertEqual(regular.process_one()[0], 'Model.Wms.Operation.Move')
self.assertEqual(regular.process_one()[0],
'Model.Wms.Operation.Move')
unpack_info = regular.process_one()
finally:
regular.registry.commit = orig_commit
Expand Down

0 comments on commit 8320419

Please sign in to comment.