Skip to content

Commit a3d6fe6

Browse files
committed
whitespace
1 parent c46875b commit a3d6fe6

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

pandas/core/reshape/merge.py

-2
Original file line numberDiff line numberDiff line change
@@ -921,15 +921,13 @@ def _maybe_coerce_merge_keys(self):
921921
'are not equal to their int '
922922
'representation', UserWarning)
923923

924-
925924
elif is_float_dtype(rk) and is_integer_dtype(lk):
926925
if not (rk == rk.astype(lk.dtype)).all():
927926
warnings.warn('You are merging on int and float '
928927
'columns where the float values '
929928
'are not equal to their int '
930929
'representation', UserWarning)
931930

932-
933931
# let's infer and see if we are ok
934932
elif lib.infer_dtype(lk) == lib.infer_dtype(rk):
935933
pass

0 commit comments

Comments
 (0)