Skip to content

Commit d2cdeb6

Browse files
committed
Fix line length in _warnings.py to satisfy ruff format
1 parent a481e23 commit d2cdeb6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pandas/_testing/_warnings.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,9 @@ class for all warnings. To raise multiple types of exceptions,
110110
if isinstance(match, tuple)
111111
else (match,) * len(expected_warning)
112112
)
113-
for warning_type, warning_match in zip(expected_warning, match, strict=True):
113+
for warning_type, warning_match in zip(
114+
expected_warning, match, strict=True
115+
):
114116
_assert_caught_expected_warnings(
115117
caught_warnings=w,
116118
expected_warning=warning_type,

0 commit comments

Comments
 (0)