Changing not not for a more explicit if statement

This commit is contained in:
Gustavo Moreira
2021-12-13 09:51:25 +11:00
parent d2ad867d1e
commit c5c1f355ef
@@ -651,7 +651,10 @@ class EPROCESS(generic.GenericIntelProcess, pool.ExecutiveObject):
except AttributeError:
return False
return not not value
if value:
return True
return False
def get_vad_root(self):