1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-10-03 17:50:11 +02:00

clean up globals in signatures.py

This commit is contained in:
Michael Pöhn 2018-07-30 13:07:07 +02:00
parent 44f21fbf15
commit 27d382e1f4

View File

@ -86,8 +86,6 @@ def extract(options):
def main():
global config, options
# Parse command line...
parser = ArgumentParser(usage="%(prog)s [options] APK [APK...]")
common.setup_global_opts(parser)
@ -97,6 +95,6 @@ def main():
options = parser.parse_args()
# Read config.py...
config = common.read_config(options)
common.read_config(options)
extract(options)