summaryrefslogtreecommitdiff
path: root/doc/data/messages/u/use-set-for-membership/good.py
blob: e6c709604962556ec4560cd5ccd28aeaf5816b2c (plain)
1
2
3
def fruit_is_dangerous_for_cat(fruit: str) -> bool:
    """This list is only a silly example, don't make decision regarding your cat diet based on it."""
    return fruit in {"cherry", "grapes"}