Skip to content

Commit 86f206d

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 2124d07 commit 86f206d

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

matrix/similar_matrices.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,9 @@ def _jordan_signature(matrix: Matrix) -> tuple[tuple[Any, tuple[int, ...]], ...]
9090
eigenvalue,
9191
tuple(sorted(block_sizes, reverse=True)),
9292
)
93-
for eigenvalue, block_sizes in sorted(summary.items(), key=lambda item: repr(item[0]))
93+
for eigenvalue, block_sizes in sorted(
94+
summary.items(), key=lambda item: repr(item[0])
95+
)
9496
)
9597

9698

0 commit comments

Comments
 (0)