Skip to content

Commit 4cc4e77

Browse files
committed
style: fix formatting with pre-commit (Ruff)
1 parent 3f998d4 commit 4cc4e77

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/_testing/asserters.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -324,8 +324,8 @@ def _check_types(left, right, obj: str = "Index") -> None:
324324
if not left.equals(right):
325325
try:
326326
mismatch = left._values != right._values
327-
except TypeError :
328-
mismatch = left._internal_get_values() != right._internal_get_values()
327+
except TypeError:
328+
mismatch = left._internal_get_values() != right._internal_get_values()
329329

330330
if not isinstance(mismatch, np.ndarray):
331331
mismatch = cast("ExtensionArray", mismatch).fillna(True)

0 commit comments

Comments
 (0)