Ruff Formatting

Fix pyTest issues
This commit is contained in:
skunkworxdark
2023-12-08 18:31:33 +00:00
parent fdb97c1d02
commit d3ad356c6a
2 changed files with 12 additions and 8 deletions

View File

@ -159,7 +159,12 @@ def calc_tiles_even_split(
def calc_tiles_min_overlap(
image_height: int, image_width: int, tile_height: int, tile_width: int, min_overlap: int = 0, round_to_8: bool = False
image_height: int,
image_width: int,
tile_height: int,
tile_width: int,
min_overlap: int = 0,
round_to_8: bool = False,
) -> list[Tile]:
"""Calculate the tile coordinates for a given image shape under a simple tiling scheme with overlaps.