Skip to content

Commit bc4bc1e

Browse files
committed
Fix format
1 parent 4d385f0 commit bc4bc1e

File tree

1 file changed

+3
-1
lines changed
  • backend/infrahub/graphql/mutations

1 file changed

+3
-1
lines changed

backend/infrahub/graphql/mutations/diff.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,9 @@ async def mutate(
9999
to_time=to_timestamp_str,
100100
)
101101
if graphql_context.service:
102-
workflow = await graphql_context.service.workflow.submit_workflow(workflow=DIFF_UPDATE, parameters={"model": model})
102+
workflow = await graphql_context.service.workflow.submit_workflow(
103+
workflow=DIFF_UPDATE, parameters={"model": model}
104+
)
103105
return {"ok": True, "task": {"id": str(workflow.id)}}
104106

105107
return {"ok": True}

0 commit comments

Comments
 (0)