File size: 260 Bytes
899a7c7
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9

def is_non_empty(value: str | None) -> bool:
    return value is not None and value.strip() != ""


def validate_coupon(code: str | None) -> bool:
    # Intentional bug: accepts invalid short code when value is None
    return (code or "").startswith("SAVE")