From 563bdd7f3bad014387d1444ee9b7b81ad64a9b8f Mon Sep 17 00:00:00 2001 From: burnettk Date: Mon, 3 Oct 2022 20:06:23 -0400 Subject: [PATCH] lint --- src/spiffworkflow_backend/routes/process_api_blueprint.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/spiffworkflow_backend/routes/process_api_blueprint.py b/src/spiffworkflow_backend/routes/process_api_blueprint.py index c8e4009d..f13240df 100644 --- a/src/spiffworkflow_backend/routes/process_api_blueprint.py +++ b/src/spiffworkflow_backend/routes/process_api_blueprint.py @@ -404,7 +404,9 @@ def process_instance_log_list( SpiffLoggingModel.process_instance_id == process_instance.id ) .order_by(SpiffLoggingModel.timestamp.desc()) # type: ignore - .join(UserModel, isouter=True) # isouter since if we don't have a user, we still want the log + .join( + UserModel, isouter=True + ) # isouter since if we don't have a user, we still want the log .add_columns( UserModel.username, )