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 e847eb1 commit b24a0f3Copy full SHA for b24a0f3
uncompyle6/bin/uncompile.py
@@ -131,7 +131,6 @@ def usage():
131
default=0,
132
help="start decomplation at offset; default is 0 or the starting offset.",
133
)
134
-@click.version_option(version=__version__)
135
@click.option(
136
"--stop-offset",
137
"stop_offset",
uncompyle6/main.py
@@ -302,6 +302,9 @@ def main(
302
for source_path in source_files:
303
compiled_files.append(compile_file(source_path))
304
305
+ if len(compiled_files) == 0:
306
+ return 0, 0, 0, 0
307
+
308
for filename in compiled_files:
309
infile = osp.join(in_base, filename)
310
# print("XXX", infile)
0 commit comments