1
0
Fork 0

lint(api): apply style fixes

This commit is contained in:
Sean Sube 2023-02-07 08:20:02 -06:00
parent 86126ffe66
commit b1a1a2b9c4
Signed by: ssube
GPG Key ID: 3EED7B957D362AF1
1 changed files with 4 additions and 1 deletions

View File

@ -116,7 +116,10 @@ def upscale_outpaint(
logger.debug("outpainting with 0 margin, using grid tiling")
output = process_tile_grid(source_image, SizeChart.auto, 1, [outpaint])
elif border.left == border.right and border.top == border.bottom:
logger.debug("outpainting with an even border, using spiral tiling with %s overlap", overlap)
logger.debug(
"outpainting with an even border, using spiral tiling with %s overlap",
overlap,
)
output = process_tile_spiral(
source_image, SizeChart.auto, 1, [outpaint], overlap=overlap
)