Skip to content

Commit f4fa6a1

Browse files
author
GefMar
committed
update
1 parent 2791e94 commit f4fa6a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

logic_processes_layer/extensions/conditions/condition.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def __and__(self, other: CallableConditionProtocol) -> OperatorCondition:
5151
def __or__(self, other: CallableConditionProtocol) -> OperatorCondition:
5252
return OperatorCondition([self, other], operator=OperatorEnum.OR)
5353

54-
def __xor__(self, other):
54+
def __xor__(self, other: CallableConditionProtocol) -> OperatorCondition:
5555
return OperatorCondition([self, other], operator=OperatorEnum.XOR)
5656

5757

0 commit comments

Comments
 (0)