We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6c7bdb commit 47b616dCopy full SHA for 47b616d
Pilot1/Uno/topN_to_uno.py
@@ -322,8 +322,11 @@ def show_list(L):
322
323
def show(args):
324
"""Simply show the entry for this node"""
325
+ if args.node is None:
326
+ print("Provide a node to show!")
327
+ exit(1)
328
plan_dict = read_plan(args.plan, args.node)
- print(str(plan_dict))
329
+ # print(str(plan_dict))
330
val_cells = plan_dict['val'][0]['cell']
331
print("val cells: count: %i" % len(val_cells))
332
show_list(val_cells)
0 commit comments