remove of unused code

This commit is contained in:
hlad 2022-07-31 09:10:38 +02:00
parent 8befcd2896
commit b9009c23eb

View file

@ -10,8 +10,6 @@ from .endpoints import Endpoints
class Rohlik(APIClient):
def __init__(self, api_key: str):
super().__init__(response_handler=JsonResponseHandler, authentication_method=HeaderAuthentication(token=api_key,parameter="x-api-authorization",scheme="token"))
# self.response_handler=JsonResponseHandler
# self.authentication_method=HeaderAuthentication(token=api_key,parameter="x-api-authorization",scheme="token")
@serialize()
def get_product(self, product_id: int) -> Product: