http-misc 1.0.1__tar.gz → 1.0.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {http_misc-1.0.1 → http_misc-1.0.2}/PKG-INFO +1 -1
- {http_misc-1.0.1 → http_misc-1.0.2}/http_misc/services.py +1 -2
- {http_misc-1.0.1 → http_misc-1.0.2}/http_misc.egg-info/PKG-INFO +1 -1
- {http_misc-1.0.1 → http_misc-1.0.2}/setup.py +1 -1
- {http_misc-1.0.1 → http_misc-1.0.2}/README.md +0 -0
- {http_misc-1.0.1 → http_misc-1.0.2}/http_misc/__init__.py +0 -0
- {http_misc-1.0.1 → http_misc-1.0.2}/http_misc/errors.py +0 -0
- {http_misc-1.0.1 → http_misc-1.0.2}/http_misc/http_utils.py +0 -0
- {http_misc-1.0.1 → http_misc-1.0.2}/http_misc/logger.py +0 -0
- {http_misc-1.0.1 → http_misc-1.0.2}/http_misc/retry_policy.py +0 -0
- {http_misc-1.0.1 → http_misc-1.0.2}/http_misc.egg-info/SOURCES.txt +0 -0
- {http_misc-1.0.1 → http_misc-1.0.2}/http_misc.egg-info/dependency_links.txt +0 -0
- {http_misc-1.0.1 → http_misc-1.0.2}/http_misc.egg-info/requires.txt +0 -0
- {http_misc-1.0.1 → http_misc-1.0.2}/http_misc.egg-info/top_level.txt +0 -0
- {http_misc-1.0.1 → http_misc-1.0.2}/setup.cfg +0 -0
- {http_misc-1.0.1 → http_misc-1.0.2}/tests/test_retry_policy.py +0 -0
- {http_misc-1.0.1 → http_misc-1.0.2}/tests/test_services.py +0 -0
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import uuid
|
|
2
1
|
from abc import ABC, abstractmethod
|
|
3
2
|
from contextlib import asynccontextmanager
|
|
4
3
|
from dataclasses import dataclass
|
|
@@ -99,7 +98,7 @@ class HttpService(BaseService):
|
|
|
99
98
|
super().__init__(*args, **kwargs)
|
|
100
99
|
self.client_session = client_session
|
|
101
100
|
|
|
102
|
-
async def _send(self,
|
|
101
|
+
async def _send(self, *args, **kwargs) -> ServiceResponse:
|
|
103
102
|
method = kwargs.get('method', 'get')
|
|
104
103
|
url = kwargs.get('url', None)
|
|
105
104
|
if url is None:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|