Skip to content

Commit 2f34309

Browse files
Merge pull request #2 from anaconda/serialize
strings not objects in schema
2 parents 83a7535 + 3e5ea3d commit 2f34309

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

intake_google_analytics/source.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def _get_schema(self):
7373
)
7474

7575
return Schema(datashape=None,
76-
dtype=self._df.dtypes,
76+
dtype={k: str(v) for k,v in self._df.dtypes.items()},
7777
shape=(None, len(self._df.columns)),
7878
npartitions=1,
7979
extra_metadata={})

0 commit comments

Comments
 (0)