diff --git a/marketplaces/base.py b/marketplaces/base.py index a7eb058..1ba5f86 100644 --- a/marketplaces/base.py +++ b/marketplaces/base.py @@ -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