Datasets:
| 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 |