We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent feb1639 commit 66a30bdCopy full SHA for 66a30bd
pandas/_testing/__init__.py
@@ -108,9 +108,9 @@
108
DATETIME64_DTYPES: List[Dtype] = ["datetime64[ns]", "M8[ns]"]
109
TIMEDELTA64_DTYPES: List[Dtype] = ["timedelta64[ns]", "m8[ns]"]
110
111
-BOOL_DTYPES = [bool, "bool"]
112
-BYTES_DTYPES = [bytes, "bytes"]
113
-OBJECT_DTYPES = [object, "object"]
+BOOL_DTYPES: List[Dtype] = [bool, "bool"]
+BYTES_DTYPES: List[Dtype] = [bytes, "bytes"]
+OBJECT_DTYPES: List[Dtype] = [object, "object"]
114
115
ALL_REAL_DTYPES = FLOAT_DTYPES + ALL_INT_DTYPES
116
ALL_NUMPY_DTYPES = (
0 commit comments