diff options
author | zhukoff-pavel <zhukoff-pavel@yandex-team.com> | 2023-03-27 13:48:42 +0300 |
---|---|---|
committer | zhukoff-pavel <zhukoff-pavel@yandex-team.com> | 2023-03-27 13:48:42 +0300 |
commit | ebea3630bb3cabb3f936b766830864a581bc65b9 (patch) | |
tree | 92ff71f1e30684b0d42672a5134257e91e3c5fa6 /library/python/strings | |
parent | fdc60d2a6e899aec6531790ecd1fa3b705277dc1 (diff) | |
download | ydb-ebea3630bb3cabb3f936b766830864a581bc65b9.tar.gz |
Add cythonized python srcs lint checks
Diffstat (limited to 'library/python/strings')
-rw-r--r-- | library/python/strings/strings.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/python/strings/strings.py b/library/python/strings/strings.py index 07b7fc194f..41957ab40b 100644 --- a/library/python/strings/strings.py +++ b/library/python/strings/strings.py @@ -18,7 +18,7 @@ def left_strip(el, prefix): Strips prefix at the left of el """ if el.startswith(prefix): - return el[len(prefix):] + return el[len(prefix) :] return el |