summaryrefslogtreecommitdiff
path: root/doc/data/messages/c/comparison-with-callable/good.py
blob: 587cf1b98cbfd877d560aa6978005b4482fe5ac5 (plain)
1
2
3
4
5
6
def function_returning_a_fruit() -> str:
    return "orange"

def is_an_orange(fruit: str = "apple"):
    # apple == orange
    return fruit == function_returning_a_fruit()