summaryrefslogtreecommitdiff
path: root/doc/data/messages/u/use-implicit-booleaness-not-comparison-to-string/good.py
blob: 21f222e9bce2f08c9c720ceee628ec5989484fd3 (plain)
1
2
3
4
5
6
def important_string_manipulation(x: str, y: str) -> None:
    if not x:
        print("x is an empty string")

    if y:
        print("y is not an empty string")