Skip to content

Commit 563fa08

Browse files
FKintjreback
authored andcommitted
Add missing space to the NotImplementedError's message for compound dtypes (#17140)
1 parent 6ac609d commit 563fa08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/generic.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ def _validate_dtype(self, dtype):
152152
# a compound dtype
153153
if dtype.kind == 'V':
154154
raise NotImplementedError("compound dtypes are not implemented"
155-
"in the {0} constructor"
155+
" in the {0} constructor"
156156
.format(self.__class__.__name__))
157157

158158
return dtype

0 commit comments

Comments
 (0)