We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91d3fd7 commit 35ec4b6Copy full SHA for 35ec4b6
1 file changed
mini_lambda/main.py
@@ -439,7 +439,7 @@ def And(a, b):
439
440
:param a: left operand
441
:param b: right operand
442
- :return:
+ :return: expression evaluating the and combination
443
"""
444
return _LambdaExpression._get_expression_for_method_with_args(_and, a, b)
445
@@ -454,7 +454,7 @@ def Or(a, b):
454
455
456
457
+ :return: expression evaluating the or combination
458
459
return _LambdaExpression._get_expression_for_method_with_args(_or, a, b)
460
0 commit comments