From d8679700cea497af2389a5aa1263470f6369e778 Mon Sep 17 00:00:00 2001 From: Jan Tilly Date: Tue, 14 Jan 2025 09:13:24 +0100 Subject: [PATCH] Ruff. --- tests/test_matrices.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_matrices.py b/tests/test_matrices.py index 56c22b81..a72985e5 100644 --- a/tests/test_matrices.py +++ b/tests/test_matrices.py @@ -50,9 +50,9 @@ def categorical_matrix_drop_first(): return tm.CategoricalMatrix(vec, drop_first=True) -def get_unscaled_matrices() -> ( - list[Union[tm.DenseMatrix, tm.SparseMatrix, tm.CategoricalMatrix]] -): +def get_unscaled_matrices() -> list[ + Union[tm.DenseMatrix, tm.SparseMatrix, tm.CategoricalMatrix] +]: return [ dense_matrix_F(), dense_matrix_C(),