Skip to content

Commit

Permalink
Change path from named arg to positional arg (#38)
Browse files Browse the repository at this point in the history
Signed-off-by: stickie <[email protected]>
  • Loading branch information
FieryIceStickie authored Apr 25, 2024
1 parent 3c4e94d commit 5ff6689
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vipyr_deobf/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def run():
prog='Vipyr Deobfuscator',
description='Deobfuscates obfuscated scripts',
)
parser.add_argument('-p', '--path', required=True, help='path to obfuscated file')
parser.add_argument('path', help='path to obfuscated file')
parser.add_argument('-t', '--type', default='auto', help='type of obfuscation used')
parser.add_argument('-d', '--debug', action='store_true', help='display debug logs (defaults to false)')
parser.add_argument('-s', '--soft', action='store_true', help='display expected warnings (defaults to false)')
Expand Down

0 comments on commit 5ff6689

Please sign in to comment.