]> Nutra Git (v1) - nutratech/cli.git/commitdiff
fix unused headers var (oh well)
authorShane Jaroch <chown_tee@proton.me>
Sat, 2 Mar 2024 15:47:28 +0000 (10:47 -0500)
committerShane Jaroch <chown_tee@proton.me>
Sat, 2 Mar 2024 15:47:28 +0000 (10:47 -0500)
ntclient/argparser/funcs.py

index 77795de1f9f4d6148d3e00aae09f8441116d51b7..b7757615fae2d3ac425742d6babda82a685f0da5 100644 (file)
@@ -352,7 +352,7 @@ def bug_simulate(args: argparse.Namespace) -> tuple:
 
 def bugs_list(args: argparse.Namespace) -> tuple:
     """List bug reports that have been saved"""
-    rows, headers = ntclient.services.bugs.list_bugs()
+    rows, _ = ntclient.services.bugs.list_bugs()
     n_bugs_total = len(rows)
     n_bugs_unsubmitted = len([x for x in rows if not bool(x[-1])])