Skip to content

Commit

Permalink
Fix Flake8 config.
Browse files Browse the repository at this point in the history
  • Loading branch information
kfindeisen committed May 14, 2018
1 parent da20766 commit 5026eaf
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions python/lsst/pipe/base/cmdLineTask.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,6 @@ def _runPool(pool, timeout, function, iterable):
This is required so as to trigger an immediate interrupt on the KeyboardInterrupt (Ctrl-C); see
http://stackoverflow.com/questions/1408356/keyboard-interrupts-with-pythons-multiprocessing-pool
Further wraps the function in ``_poolFunctionWrapper`` to catch exceptions
that don't inherit from `Exception`.
"""
return pool.map_async(function, iterable).get(timeout)

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[flake8]
max-line-length = 110
ignore = E133, E228, N802, N803, N806
ignore = E133, E226, E228, N802, N803, N806
exclude =
__init__.py,
tests/data/*
Expand Down

0 comments on commit 5026eaf

Please sign in to comment.