🚧 remove commented code

This commit is contained in:
Neill Cox 2023-10-24 13:13:28 +11:00
parent 02f4919da2
commit 7c4e1c6d5f

View file

@ -166,32 +166,3 @@ def click_get_user(ctx):
cli.add_command(click_get_user) 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)