Skip to content

Commit 71f1e9e

Browse files
authored
Fix flake8 (#6534)
1 parent f60ac3f commit 71f1e9e

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.github/workflows/test_fast.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,12 +108,10 @@ jobs:
108108
- name: Checkout
109109
uses: actions/checkout@v4
110110

111-
# note: exclude python 3.10+ from mypy checks as these produce false
112-
# positives in installed libraries for python 3.7
113111
- name: Configure Python
114112
uses: actions/setup-python@v5
115113
with:
116-
python-version: 3.9
114+
python-version: 3.x
117115

118116
- name: Install
119117
run: |

cylc/flow/scripts/dump.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ async def dump(workflow_id, options, write=print):
314314
result += " (" + ",".join(attrs) + ")"
315315
if options.show_flows:
316316
result += (
317-
f" flows={item['flowNums'].replace(' ','')}"
317+
f" flows={item['flowNums'].replace(' ', '')}"
318318
)
319319
write(result)
320320

cylc/flow/scripts/show.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ async def prereqs_and_outputs_query(
355355
if t_proxy["flowNums"] != "[1]":
356356
ansiprint(
357357
f"<bold>flows:</bold> "
358-
f"{t_proxy['flowNums'].replace(' ','')}"
358+
f"{t_proxy['flowNums'].replace(' ', '')}"
359359
)
360360

361361
# prerequisites

0 commit comments

Comments
 (0)