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


print_coordinates(x=1, y=2)