Skip to content

Commit 9a20d02

Browse files
committed
Allow -help and -h options on uncompyle6
1 parent 2302298 commit 9a20d02

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

uncompyle6/bin/uncompile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
# Mode: -*- python -*-
33
#
4-
# Copyright (c) 2015-2017, 2019-2020, 2023-2024
4+
# Copyright (c) 2015-2017, 2019-2020, 2023-2025
55
# by Rocky Bernstein
66
# Copyright (c) 2000-2002 by hartmut Goebel <[email protected]>
77
#
@@ -80,7 +80,7 @@ def usage():
8080
# )
8181

8282

83-
@click.command()
83+
@click.command(context_settings={"help_option_names": ["--help", "-help", "-h"]})
8484
@click.option(
8585
"--asm++/--no-asm++",
8686
"-A",

0 commit comments

Comments
 (0)