remove factory from targets
This commit is contained in:
@@ -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 and "TargetFactory" in key:
|
||||
if type(glo[key]) is not type or "TargetFactory" in key:
|
||||
continue
|
||||
|
||||
target = glo[key]
|
||||
|
||||
Reference in New Issue
Block a user