Skip to content

Commit

Permalink
silly syntax error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
casperdcl committed Oct 31, 2019
1 parent 59f457a commit b3589f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tqdm/std.py
Original file line number Diff line number Diff line change
Expand Up @@ -647,7 +647,7 @@ def pandas(tclass, *targs, **tkwargs):
from pandas.core.series import Series
try:
from pandas import Panel
except Import Error: # TODO: pandas>0.25.2
except ImportError: # TODO: pandas>0.25.2
Panel = None
try: # pandas>=0.18.0
from pandas.core.window import _Rolling_and_Expanding
Expand Down

0 comments on commit b3589f6

Please sign in to comment.