Skip to content

Commit 2a34bf6

Browse files
author
潘婉宁
committed
chore: fix lint
1 parent aa2cd8a commit 2a34bf6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

volcenginesdkarkruntime/_utils/_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ def removeprefix(string: str, prefix: str) -> str:
349349
Backport of `str.removeprefix` for Python < 3.9
350350
"""
351351
if string.startswith(prefix):
352-
return string[len(prefix) :]
352+
return string[len(prefix): ]
353353
return string
354354

355355

0 commit comments

Comments
 (0)