diff --git a/src/tcgdexsdk/endpoints/Endpoint.py b/src/tcgdexsdk/endpoints/Endpoint.py index e6fa7ee..33bd371 100644 --- a/src/tcgdexsdk/endpoints/Endpoint.py +++ b/src/tcgdexsdk/endpoints/Endpoint.py @@ -26,7 +26,6 @@ def __init__(self, self.endpoint = endpoint async def get(self, id: str) -> Optional[Item]: - print(self.tcgdex.language) return fetch(self.tcgdex, f"https://api.tcgdex.net/v2/{self.tcgdex.language}/{self.endpoint}/{id}", self.item_model) async def list(self, query: Optional[Query] = None) -> List[ListModel]: