Added redundant argument creation.

This commit is contained in:
Anton Hvornum 2021-05-24 13:37:33 +02:00
parent 2ee88e0e3a
commit bad4d8a38b
1 changed files with 1 additions and 2 deletions

View File

@ -58,10 +58,9 @@ def initialize_arguments():
config["script"] = args.script
return config
storage['arguments'] = arguments
arguments = initialize_arguments()
from .lib.plugins import plugins
arguments = initialize_arguments()
# TODO: Learn the dark arts of argparse... (I summon thee dark spawn of cPython)