Datasets:
File size: 334 Bytes
907001b | 1 2 3 4 5 6 7 8 9 10 11 | def call(self, inpt):
"""pass"""
if inpt is Manager.NONE_INPUT:
return False
argument_instance = self.argument(inpt)
if not argument_instance.applies:
return False
application = self.__apply(argument_instance, inpt)
if self.negative:
application = not application
return application |