From 6ba2f12cab47fbffd384883f946bed60d7a6a375 Mon Sep 17 00:00:00 2001 From: cktricky Date: Fri, 6 Apr 2018 00:07:20 -1000 Subject: [PATCH] removed dup code that is ugly and horrible --- weirdAAL.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weirdAAL.py b/weirdAAL.py index 54b0b21..0887c52 100755 --- a/weirdAAL.py +++ b/weirdAAL.py @@ -36,7 +36,7 @@ def step_recon(): def method_create(): try: - arg = globals()["step_" + args.step]#arg = eval("step_" + args.step) + arg = globals()["step_" + args.step] return arg except KeyError: print("That step does not exist")