🚧 remove commented code
This commit is contained in:
parent
02f4919da2
commit
7c4e1c6d5f
1 changed files with 0 additions and 29 deletions
|
|
@ -166,32 +166,3 @@ def click_get_user(ctx):
|
|||
|
||||
|
||||
cli.add_command(click_get_user)
|
||||
|
||||
# def cli_list_projects(args):
|
||||
# logging.debug("cli_list_projects called")
|
||||
|
||||
# projects = list_projects(args)
|
||||
|
||||
# if args.format == "table":
|
||||
# tbl = PrettyTable()
|
||||
# tbl.align = "l"
|
||||
# tbl.field_names = [
|
||||
# "ID",
|
||||
# "Name",
|
||||
# # "Description"
|
||||
# ]
|
||||
|
||||
# for row in projects:
|
||||
# tbl.add_row(
|
||||
# [
|
||||
# row["id"],
|
||||
# row["name"],
|
||||
# # row["description"][:50] if row["description"] else ""
|
||||
# ]
|
||||
# )
|
||||
|
||||
# print(tbl)
|
||||
# elif args.format == "json":
|
||||
# print(json.dumps(projects))
|
||||
# else:
|
||||
# print(projects)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue