feat: added timeout on request

This commit is contained in:
2025-12-06 19:18:11 +03:00
parent 3bf182c7db
commit e3b8772662

View File

@@ -35,6 +35,7 @@ class BaseMarketplaceApi(ABC):
http_method,
f'{self.api_url}{method}',
json=data,
headers=self.get_headers()
headers=self.get_headers(),
timeout=30
)
return session, response