We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 027a727 commit e566719Copy full SHA for e566719
src/utils.py
@@ -98,6 +98,7 @@ def wrapper(*args, **kwargs):
98
return wrapper
99
return decorator
100
101
+
102
def validate_and_normalize_cell(cell: str):
103
"""
104
Проверка на соответствие строки формату ячейки Google Sheets:
@@ -114,4 +115,5 @@ def validate_and_normalize_cell(cell: str):
114
115
if not re.match(r'^[A-Za-z]+$', letters):
116
raise ValueError(f"Cell contains non-latin characters: '{letters}'. Only Latin letters allowed.")
117
- return letters.upper() + numbers
118
+ return letters.upper() + numbers
119
0 commit comments