Skip to content

Commit d15a722

Browse files
committed
Use series._values
1 parent e778053 commit d15a722

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/dtypes/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1713,7 +1713,7 @@ def is_extension_array_dtype(arr_or_dtype):
17131713

17141714
# we want to unpack series, anything else?
17151715
if isinstance(arr_or_dtype, ABCSeries):
1716-
arr_or_dtype = arr_or_dtype.values
1716+
arr_or_dtype = arr_or_dtype._values
17171717
return isinstance(arr_or_dtype, (ExtensionDtype, ExtensionArray))
17181718

17191719

0 commit comments

Comments
 (0)