We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91309bd commit a533230Copy full SHA for a533230
pandas/core/dtypes/common.py
@@ -776,8 +776,10 @@ def is_implicit_conversion_to_float64(source, target) -> bool:
776
# other data types derived from 64-bit integers such as U/Int64Dtype
777
# should also work
778
if (
779
- src.kind in "iu" and src.itemsize == 8
780
- and tar.kind in "iu" and tar.itemsize == 8
+ src.kind in "iu"
+ and src.itemsize == 8
781
+ and tar.kind in "iu"
782
+ and tar.itemsize == 8
783
):
784
return src != tar
785
else:
0 commit comments