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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: http-misc
3
- Version: 1.0.1
3
+ Version: 1.0.2
4
4
  Summary: Утилитарный пакет межсервисного взаимодействия по протоколу HTTP
5
5
  Author: Anton Gorinenko
6
6
  Author-email: anton.gorinenko@gmail.com
@@ -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, request_id: uuid.UUID, *args, **kwargs) -> ServiceResponse:
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:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: http-misc
3
- Version: 1.0.1
3
+ Version: 1.0.2
4
4
  Summary: Утилитарный пакет межсервисного взаимодействия по протоколу HTTP
5
5
  Author: Anton Gorinenko
6
6
  Author-email: anton.gorinenko@gmail.com
@@ -4,7 +4,7 @@ import setuptools
4
4
 
5
5
  setuptools.setup(
6
6
  name='http-misc',
7
- version='1.0.1',
7
+ version='1.0.2',
8
8
  author='Anton Gorinenko',
9
9
  author_email='anton.gorinenko@gmail.com',
10
10
  description='Утилитарный пакет межсервисного взаимодействия по протоколу HTTP',
File without changes
File without changes
File without changes
File without changes