Skip to content

Commit 5d12408

Browse files
committed
fixed lint errors
1 parent 277cd9f commit 5d12408

File tree

1 file changed

+4
-1
lines changed
  • functions-python/batch_process_dataset/src

1 file changed

+4
-1
lines changed

functions-python/batch_process_dataset/src/main.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,10 @@ def process_dataset(cloud_event: CloudEvent):
340340

341341
if executions > 0:
342342
if executions >= maximum_executions:
343-
error_message = f"[{stable_id}] Function already executed maximum times in execution: [{execution_id}]"
343+
error_message = (
344+
f"[{stable_id}] Function already executed maximum times "
345+
f"in execution: [{execution_id}]"
346+
)
344347
logging.error(error_message)
345348
return error_message
346349

0 commit comments

Comments
 (0)