Skip to content

Commit

Permalink
Check if tqdm exists and then import
Browse files Browse the repository at this point in the history
  • Loading branch information
Amit Kumar committed Apr 24, 2018
1 parent 6ac7a59 commit 2cfc898
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas_gbq/gbq.py
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,7 @@ def load_data(

def _check_if_tqdm_exists(self):
try:
import tqdm
import tqdm # noqa
return True
except ImportError:
return False
Expand Down

0 comments on commit 2cfc898

Please sign in to comment.