diff --git a/factories/TargetFactory.py b/factories/TargetFactory.py index d5b8157..38162fa 100644 --- a/factories/TargetFactory.py +++ b/factories/TargetFactory.py @@ -8,7 +8,7 @@ class TargetFactory: glo = globals() # Save globals so the dict does not change during execution of the script for key in glo: - if type(key) != 'class': + if type(glo[key]) != 'class': continue target = glo[key]