1
0
Fork 0

apply lint

This commit is contained in:
Sean Sube 2023-07-15 09:26:39 -05:00
parent 0a701c8d6c
commit caa96ed645
Signed by: ssube
GPG Key ID: 3EED7B957D362AF1
1 changed files with 9 additions and 5 deletions

View File

@ -168,8 +168,11 @@ class ChainPipeline:
save_image(server, "last-tile.png", output_tile) save_image(server, "last-tile.png", output_tile)
return output_tile return output_tile
except: except Exception:
logger.exception("error while running stage pipeline for tile, retry %s of 3", i) logger.exception(
"error while running stage pipeline for tile, retry %s of 3",
i,
)
output = process_tile_order( output = process_tile_order(
stage_params.tile_order, stage_params.tile_order,
@ -196,9 +199,10 @@ class ChainPipeline:
**kwargs, **kwargs,
) )
break break
except: except Exception:
logger.exception("error while running stage pipeline, retry %s of 3", i) logger.exception(
"error while running stage pipeline, retry %s of 3", i
)
logger.debug( logger.debug(
"finished stage %s with %s results", "finished stage %s with %s results",