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
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:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user