Skip to content

Commit

Permalink
Prevents the launch-splash-screen internal cli being shown when using…
Browse files Browse the repository at this point in the history
… rose help
  • Loading branch information
astroDimitrios committed Dec 10, 2024
1 parent 5cb82db commit f345292
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions metomi/rose/rose.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,8 @@ def load_entry_point(entry_point: 'EntryPoint'):
def _get_sub_cmds(ns):
for ns_, sub_cmd in set(PYTHON_SUB_CMDS) | BASH_SUB_CMDS:
if ns_ == ns:
if (ns == 'rose') and (sub_cmd == 'launch-splash-screen'):
continue
yield sub_cmd


Expand Down

0 comments on commit f345292

Please sign in to comment.