Skip to content

Commit

Permalink
fixed coverage issue with import
Browse files Browse the repository at this point in the history
  • Loading branch information
wolph committed May 27, 2019
1 parent 976acf5 commit 2d7e63f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion progressbar/bar.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from datetime import datetime, timedelta
try: # pragma: no cover
from collections import abc
except ImportError:
except ImportError: # pragma: no cover
import collections as abc

from python_utils import converters
Expand Down

0 comments on commit 2d7e63f

Please sign in to comment.