From b1a1a2b9c40f88fdde3e76801ef5367fa07e9a0f Mon Sep 17 00:00:00 2001 From: Sean Sube Date: Tue, 7 Feb 2023 08:20:02 -0600 Subject: [PATCH] lint(api): apply style fixes --- api/onnx_web/chain/upscale_outpaint.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/api/onnx_web/chain/upscale_outpaint.py b/api/onnx_web/chain/upscale_outpaint.py index e5c95d1a..ffd55b02 100644 --- a/api/onnx_web/chain/upscale_outpaint.py +++ b/api/onnx_web/chain/upscale_outpaint.py @@ -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 )