chore(tests): add # noqa to suppress linter complaints in zakupki_client tests
Some checks failed
CI/CD Pipeline / Run Tests (push) Failing after 1m37s
CI/CD Pipeline / Code Quality Checks (push) Failing after 1m45s
CI/CD Pipeline / Build & Push Images (push) Has been skipped
CI/CD Pipeline / Deploy (dev) (push) Has been skipped
CI/CD Pipeline / Deploy (prod) (push) Has been skipped

This commit is contained in:
2026-02-10 11:22:34 +01:00
parent c002ea7659
commit c04dd97717
2 changed files with 24 additions and 21 deletions

View File

@@ -195,7 +195,7 @@ class FNSExcelParser:
"""Преобразует значение ячейки в int или None."""
if value is None:
return None
if isinstance(value, (int, float)):
if isinstance(value, (int, float)): # noqa
return int(value)
if isinstance(value, str):
value = value.strip()