aboutsummaryrefslogtreecommitdiffstats
path: root/library/python/strings/strings.py
diff options
context:
space:
mode:
authorzhukoff-pavel <zhukoff-pavel@yandex-team.com>2023-03-27 13:48:42 +0300
committerzhukoff-pavel <zhukoff-pavel@yandex-team.com>2023-03-27 13:48:42 +0300
commitebea3630bb3cabb3f936b766830864a581bc65b9 (patch)
tree92ff71f1e30684b0d42672a5134257e91e3c5fa6 /library/python/strings/strings.py
parentfdc60d2a6e899aec6531790ecd1fa3b705277dc1 (diff)
downloadydb-ebea3630bb3cabb3f936b766830864a581bc65b9.tar.gz
Add cythonized python srcs lint checks
Diffstat (limited to 'library/python/strings/strings.py')
-rw-r--r--library/python/strings/strings.py2
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