We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2791e94 commit f4fa6a1Copy full SHA for f4fa6a1
logic_processes_layer/extensions/conditions/condition.py
@@ -51,7 +51,7 @@ def __and__(self, other: CallableConditionProtocol) -> OperatorCondition:
51
def __or__(self, other: CallableConditionProtocol) -> OperatorCondition:
52
return OperatorCondition([self, other], operator=OperatorEnum.OR)
53
54
- def __xor__(self, other):
+ def __xor__(self, other: CallableConditionProtocol) -> OperatorCondition:
55
return OperatorCondition([self, other], operator=OperatorEnum.XOR)
56
57
0 commit comments