Skip to content
This repository has been archived by the owner on Jun 21, 2022. It is now read-only.

Commit

Permalink
Union pandas mixin was labeled 'TableSeries'
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Hedges committed Jun 15, 2019
1 parent 22733f4 commit 3a98e2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion awkward/array/union.py
Original file line number Diff line number Diff line change
Expand Up @@ -484,6 +484,6 @@ def _util_pandas(self, seen):
return seen[id(self)]
else:
out = seen[id(self)] = self.copy()
out.__class__ = awkward.pandas.mixin("TableSeries", self)
out.__class__ = awkward.pandas.mixin("UnionSeries", self)
out._contents = [x._util_pandas(seen) if isinstance(x, awkward.array.base.AwkwardArray) else x for x in out._contents]
return out

0 comments on commit 3a98e2a

Please sign in to comment.