Added concepts with the same key handling

This commit is contained in:
2019-11-18 17:02:02 +01:00
parent 7fa509555d
commit cb6be9fec7
15 changed files with 255 additions and 43 deletions
+3 -1
View File
@@ -13,8 +13,10 @@ class OneSuccessEvaluator(AllReturnValuesEvaluator):
It has a low priority to let other evaluators try to resolve the errors
"""
NAME = "OneSuccess"
def __init__(self):
super().__init__("Parsers Evaluator", 10)
super().__init__(self.NAME, 10)
self.successful_return_value = None
def matches(self, context, return_values):