Skip to content

Commit

Permalink
fix(array): Actually copy the data...
Browse files Browse the repository at this point in the history
  • Loading branch information
AntoineDao committed Apr 26, 2020
1 parent 498c20a commit 3f282e1
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions ladybug_pandas/extension_types/arraytype.py
Original file line number Diff line number Diff line change
Expand Up @@ -717,6 +717,7 @@ def copy(self) -> "ExtensionArray":
return self.__class__(
values=self.data.copy(),
dtype=self.dtype,
copy=True,
)


Expand Down

0 comments on commit 3f282e1

Please sign in to comment.