Skip to content

Commit f5be5bf

Browse files
remove lint (#5856)
1 parent f09b3ef commit f5be5bf

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

cylc/flow/cfgspec/workflow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1787,7 +1787,7 @@ def upg(cfg, descr):
17871787
['cylc', 'simulation', 'disable suite event handlers'])
17881788
u.obsolete('8.0.0', ['cylc', 'simulation'], is_section=True)
17891789
u.obsolete('8.0.0', ['visualization'], is_section=True)
1790-
u.obsolete('8.0.0', ['scheduling', 'spawn to max active cycle points']),
1790+
u.obsolete('8.0.0', ['scheduling', 'spawn to max active cycle points'])
17911791
u.deprecate(
17921792
'8.0.0',
17931793
['cylc', 'task event mail interval'],

cylc/flow/scripts/graph.py

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -414,9 +414,21 @@ async def graph_diff(
414414
graph_a: List[str] = []
415415
graph_b: List[str] = []
416416
graph_reference(
417-
opts, workflow_a, start, stop, flow_file, write=graph_a.append),
417+
opts,
418+
workflow_a,
419+
start,
420+
stop,
421+
flow_file,
422+
write=graph_a.append,
423+
)
418424
graph_reference(
419-
opts, workflow_b, start, stop, flow_file_b, write=graph_b.append),
425+
opts,
426+
workflow_b,
427+
start,
428+
stop,
429+
flow_file_b,
430+
write=graph_b.append,
431+
)
420432

421433
# compare graphs
422434
diff_lines = list(

0 commit comments

Comments
 (0)