Skip to content

Commit cfaea95

Browse files
author
Laurent Mutricy
committed
ABCExtensionArray set formatting
1 parent a9cdf6e commit cfaea95

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

pandas/core/dtypes/generic.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -139,13 +139,7 @@ def _subclasscheck(cls, inst) -> bool:
139139
"ABCExtensionArray",
140140
"_typ",
141141
# Note: IntervalArray and SparseArray are included bc they have _typ="extension"
142-
{
143-
"extension",
144-
"categorical",
145-
"periodarray",
146-
"datetimearray",
147-
"timedeltaarray",
148-
},
142+
{"extension", "categorical", "periodarray", "datetimearray", "timedeltaarray"},
149143
),
150144
)
151145
ABCNumpyExtensionArray = cast(

0 commit comments

Comments
 (0)