Skip to content

Commit

Permalink
Merge pull request #2 from anaconda/serialize
Browse files Browse the repository at this point in the history
strings not objects in schema
  • Loading branch information
AlbertDeFusco authored Oct 28, 2021
2 parents 83a7535 + 3e5ea3d commit 2f34309
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion intake_google_analytics/source.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def _get_schema(self):
)

return Schema(datashape=None,
dtype=self._df.dtypes,
dtype={k: str(v) for k,v in self._df.dtypes.items()},
shape=(None, len(self._df.columns)),
npartitions=1,
extra_metadata={})
Expand Down

0 comments on commit 2f34309

Please # to comment.