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


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