We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
The inlining of a is not suggested:
a
def prepend(a, x): a = "*" * x + a return a
However, when providing the type str the refactoring is suggested:
str
def prepend(a:str, x): a = "*" * x + a return a