Skip to content

Commit

Permalink
Issue domoinc#64. Catches OverflowError thrown when attempting to con…
Browse files Browse the repository at this point in the history
…vert Dataset fields with large integers represented as strings into dates.
  • Loading branch information
chris-brundage committed Jul 26, 2022
1 parent 813586f commit 8cca8d6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pydomo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,8 @@ def ds_get(self, dataset_id):
pass
except TypeError:
pass
except OverflowError:
pass

return df

Expand Down

0 comments on commit 8cca8d6

Please sign in to comment.