Skip to content

Commit

Permalink
remove lint (#5856)
Browse files Browse the repository at this point in the history
  • Loading branch information
oliver-sanders authored Dec 4, 2023
1 parent f09b3ef commit f5be5bf
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cylc/flow/cfgspec/workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -1787,7 +1787,7 @@ def upg(cfg, descr):
['cylc', 'simulation', 'disable suite event handlers'])
u.obsolete('8.0.0', ['cylc', 'simulation'], is_section=True)
u.obsolete('8.0.0', ['visualization'], is_section=True)
u.obsolete('8.0.0', ['scheduling', 'spawn to max active cycle points']),
u.obsolete('8.0.0', ['scheduling', 'spawn to max active cycle points'])
u.deprecate(
'8.0.0',
['cylc', 'task event mail interval'],
Expand Down
16 changes: 14 additions & 2 deletions cylc/flow/scripts/graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -414,9 +414,21 @@ async def graph_diff(
graph_a: List[str] = []
graph_b: List[str] = []
graph_reference(
opts, workflow_a, start, stop, flow_file, write=graph_a.append),
opts,
workflow_a,
start,
stop,
flow_file,
write=graph_a.append,
)
graph_reference(
opts, workflow_b, start, stop, flow_file_b, write=graph_b.append),
opts,
workflow_b,
start,
stop,
flow_file_b,
write=graph_b.append,
)

# compare graphs
diff_lines = list(
Expand Down

0 comments on commit f5be5bf

Please sign in to comment.