@@ -190,6 +190,7 @@ To use this tool you have to set the following environment variables before star
190190 datasets_list = datasets_subparsers .add_parser ("list" , help = "list datasets" )
191191 datasets_list .add_argument (
192192 "--filter" ,
193+ nargs = "*" ,
193194 action = kwargs_append_action ,
194195 dest = "filter" ,
195196 type = str ,
@@ -284,6 +285,7 @@ To use this tool you have to set the following environment variables before star
284285 documents_list = documents_subparsers .add_parser ("list" , help = "list documents" )
285286 documents_list .add_argument (
286287 "--filter" ,
288+ nargs = "*" ,
287289 action = kwargs_append_action ,
288290 dest = "filter" ,
289291 type = str ,
@@ -358,6 +360,7 @@ To use this tool you have to set the following environment variables before star
358360 maps_list = maps_subparsers .add_parser ("list" , help = "list documents" )
359361 maps_list .add_argument (
360362 "--filter" ,
363+ nargs = "*" ,
361364 action = kwargs_append_action ,
362365 dest = "filter" ,
363366 type = str ,
@@ -435,6 +438,7 @@ To use this tool you have to set the following environment variables before star
435438 geoapps_list = geoapps_subparsers .add_parser ("list" , help = "list geoapps" )
436439 geoapps_list .add_argument (
437440 "--filter" ,
441+ nargs = "*" ,
438442 action = kwargs_append_action ,
439443 dest = "filter" ,
440444 type = str ,
@@ -531,6 +535,7 @@ To use this tool you have to set the following environment variables before star
531535 users_list = users_subparsers .add_parser ("list" , help = "list documents" )
532536 users_list .add_argument (
533537 "--filter" ,
538+ nargs = "*" ,
534539 action = kwargs_append_action ,
535540 dest = "filter" ,
536541 type = str ,
@@ -618,6 +623,7 @@ To use this tool you have to set the following environment variables before star
618623 uploads_list = uploads_subparsers .add_parser ("list" , help = "list uploads" )
619624 uploads_list .add_argument (
620625 "--filter" ,
626+ nargs = "*" ,
621627 action = kwargs_append_action ,
622628 dest = "filter" ,
623629 type = str ,
@@ -640,6 +646,7 @@ To use this tool you have to set the following environment variables before star
640646 )
641647 executionrequest_list .add_argument (
642648 "--filter" ,
649+ nargs = "*" ,
643650 action = kwargs_append_action ,
644651 dest = "filter" ,
645652 type = str ,
0 commit comments