[+] prompt.py: Create debug command

This commit is contained in:
Hykilpikonna
2021-09-16 23:49:31 -04:00
parent 319f85d907
commit e261e22d65
+6 -1
View File
@@ -33,7 +33,12 @@ def show(ctx, color: bool):
if color:
s = replace_color(s)
print(s)
print(parts)
@cli.command()
@click.pass_context
def debug(ctx):
print(ctx.obj['parts'])
@cli.command()