File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -654,19 +654,17 @@ def reset(ctx):
654654 _print_unhandled_exception ()
655655
656656@cli .command ()
657- @click .argument ("namespace" )
658657@click .argument ("project" )
659658@click .option ("--json" , is_flag = True , default = False , help = "Output in JSON format" )
660659@click .pass_context
661- def list_files (ctx , namespace , project ,json ):
660+ def list_files (ctx , project , json ):
662661 """List files in a project."""
663662
664663 mc = ctx .obj ["client" ]
665664 if mc is None :
666665 return
667666
668- #projects_files = mc.projects_files(name=project, namespace=namespace)
669- project_info = mc .project_info (namespace + "/" + project )
667+ project_info = mc .project_info (project )
670668 project_files = project_info ["files" ]
671669
672670 if json :
You can’t perform that action at this time.
0 commit comments