Python code and CLI are currently inconsistent. Python calls functions get_wflows, delete_wfs, reignite_wfs, etc. while CLI calls them get_wfs, delete_wflows,`reignite_wflows, etc.
This PR adds argparse.subparser(aliases: list[str]) so that both get_wfs and get_wflows etc. work.
Python code and CLI are currently inconsistent. Python calls functions
get_wflows
,delete_wfs
,reignite_wfs
, etc. while CLI calls themget_wfs
,delete_wflows
,`reignite_wflows
, etc.This PR adds
argparse.subparser(aliases: list[str])
so that bothget_wfs
andget_wflows
etc. work.