Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jan 27, 2025
1 parent 27ed3b9 commit 2e583d3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/scripts/delete_archieved_flow_runs.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def delete_archieved_flow_runs():
archieved_flow_runs = df["flow_runs"].str.len() != 0

for _, flow in df[archieved_flow_runs].iterrows():
print(f'deleting {len(flow["flow_runs"])} archieved runs for flow {flow["name"]}\n')
print(f"deleting {len(flow['flow_runs'])} archieved runs for flow {flow['name']}\n")
for scheduled_run in flow["flow_runs"]:
delete_flow_run(client, scheduled_run)

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scripts/register_flows.py
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ def main(
skipped = stats["skipped"]
errored = stats["errored"]
logger.info(
f"Registered {registered} flows, skipped {skipped} flows, " f"and errored {errored} flows."
f"Registered {registered} flows, skipped {skipped} flows, and errored {errored} flows."
)

# If not in a watch call, exit with appropriate exit code
Expand Down

0 comments on commit 2e583d3

Please sign in to comment.