summaryrefslogtreecommitdiff
path: root/doc/data/messages/u/unexpected-keyword-arg/bad.py
blob: 40ef297b1ded342c5c54329c831a3c1405aa2901 (plain)
1
2
3
4
5
def print_coordinates(x=0, y=0):
    print(f"{x=}, {y=}")


print_coordinates(x=1, y=2, z=3)  # [unexpected-keyword-arg]