Skip to content

Commit

Permalink
Merge branch 'master' of github.com:eliasdabbas/advertools
Browse files Browse the repository at this point in the history
  • Loading branch information
eliasdabbas committed Mar 21, 2024
2 parents 11ba871 + d0c67f3 commit ad8dc83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion advertools/_yt_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def _json_to_df(json_resp, params):
for col in df:
if 'Count' in col:
try:
df[col] = df[col].astype(int)
df[col] = df[col].astype('int64')
except ValueError:
continue
if ('published' in col) or ('updated' in col):
Expand Down

0 comments on commit ad8dc83

Please sign in to comment.