diff --git a/factories/TargetFactory.py b/factories/TargetFactory.py index 85a06aa..466c450 100644 --- a/factories/TargetFactory.py +++ b/factories/TargetFactory.py @@ -7,7 +7,7 @@ class TargetFactory: glo = globals() # Save globals so the dict does not change during execution of the script for key in glo: - if type(glo[key]) is not type: + if type(glo[key]) is not type and key == "TargetFactory": continue target = glo[key]