This commit is contained in:
Dave Halter
2019-12-03 16:53:07 +01:00
parent e5d1091e80
commit 3d784c748e

View File

@@ -268,7 +268,7 @@ class CompiledObject(Value):
if self.access_handle.get_repr() == 'None':
# None as an annotation doesn't need to be executed.
return ValueSet([self])
return super().execute_annotation()
return super(CompiledObject, self).execute_annotation()
def negate(self):
return create_from_access_path(self.inference_state, self.access_handle.negate())