Skip to content

Commit

Permalink
fix format again
Browse files Browse the repository at this point in the history
  • Loading branch information
ptpt committed Jan 13, 2025
1 parent de132f2 commit 56e32b6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mapillary_tools/geotag/gpmf_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -346,9 +346,9 @@ def _apply_matrix(
matrix: T.Sequence[float], values: T.Sequence[float]
) -> T.Generator[float, None, None]:
size = len(values)
assert (
len(matrix) == size * size
), f"expecting a square matrix of size {size} x {size} but got {len(matrix)}"
assert len(matrix) == size * size, (
f"expecting a square matrix of size {size} x {size} but got {len(matrix)}"
)

for y in range(size):
row_start = y * size
Expand Down

0 comments on commit 56e32b6

Please sign in to comment.