Skip to content

Commit

Permalink
fix: update ListrrAPI validate method to use correct path (#906)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidemarcoli authored and the-eversio committed Nov 29, 2024
1 parent 3b7b4ed commit 7e78724
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/program/apis/listrr_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def __init__(self, api_key: str):
self.trakt_api = di[TraktAPI]

def validate(self):
return self.request_handler.execute(HttpMethod.GET, self.BASE_URL)
return self.request_handler.execute(HttpMethod.GET, "")

def get_items_from_Listrr(self, content_type, content_lists) -> list[MediaItem] | list[str]: # noqa: C901, PLR0912
"""Fetch unique IMDb IDs from Listrr for a given type and list of content."""
Expand Down

0 comments on commit 7e78724

Please sign in to comment.