Skip to content

Commit 3630b82

Browse files
committed
Fix unrelated linter issue
1 parent d72a289 commit 3630b82

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/link/mlx/test_basic.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -211,9 +211,9 @@ def test_mlx_float64_auto_casting():
211211
dtype_warnings = [
212212
msg for msg in warning_messages if "float64" in msg and "float32" in msg
213213
]
214-
assert (
215-
len(dtype_warnings) > 0
216-
), f"Expected dtype warning, got warnings: {warning_messages}"
214+
assert len(dtype_warnings) > 0, (
215+
f"Expected dtype warning, got warnings: {warning_messages}"
216+
)
217217

218218

219219
def test_mlx_float64_complex_operations():

0 commit comments

Comments
 (0)