Skip to content

Commit

Permalink
Fix bug since nose isn't in setup.py dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
scnerd committed Oct 21, 2020
1 parent f90047e commit abfe029
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion miniutils/progress_bar.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
import itertools
import multiprocessing as mp
from nose.plugins.multiprocess import TimedOutException
try:
from nose.plugins.multiprocess import TimedOutException
except ImportError:
TimedOutException = TimeoutError
import random
import warnings

Expand Down

0 comments on commit abfe029

Please sign in to comment.