We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96f1c91 commit 234a440Copy full SHA for 234a440
modules/40-define-functions/500-named-arguments/index.py
@@ -1,2 +1,2 @@
1
def trim_and_repeat(text, offset=0, repetitions=1):
2
- return f'{text[offset:] * repetitions}'
+ return text[offset:] * repetitions
0 commit comments