Update renderer.py

Updated (replace doesn't work on sets)
This commit is contained in:
jsuelwald 2022-12-28 13:49:52 +01:00 committed by GitHub
parent 183bc8321c
commit 5e44744ff7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -30,7 +30,7 @@ def init(device):
def make_images(req: GenerateImageRequest, task_data: TaskData, data_queue: queue.Queue, task_temp_images: list, step_callback):
context.stop_processing = False
log.info(f'request: {pprint.pformat(get_printable_request(req).replace("[","\["))}')
log.info(f'task data: {pprint.pformat(task_data.dict().replace("[","\["))}')
log.info(f'task data: {pprint.pformat(task_data.dict()).replace("[","\[")}')
images = make_images_internal(req, task_data, data_queue, task_temp_images, step_callback)