summaryrefslogtreecommitdiff
path: root/doc/data/messages/p/positional-only-arguments-expected/bad.py
blob: 75e63e572797251cb200e112077b55af8319a193 (plain)
1
2
3
4
5
6
def cube(n, /):
    """Takes in a number n, returns the cube of n"""
    return n**3


cube(n=2)  # [positional-only-arguments-expected]