You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
c.positional('name', nargs='*', help='Space-separated list of parameter persistence names. Either positional name argument or --all can be specified.')
37
+
c.argument('all', help='Clear all parameter persistence data. Either positional name argument or --all can be specified.', action='store_true')
38
+
c.argument('yes', options_list=['--yes', '-y'], help='Do not prompt for confirmation. Only available when --all is specified.', action='store_true')
39
+
c.argument('purge', help='Delete parameter persistence file from working directory. Only available when --all is specified.', action='store_true')
40
+
c.argument('recursive', help='Indicate this is recursive delete of parameter persistence. Only available when --all is specified.', action='store_true')
0 commit comments