Skip to content

Commit

Permalink
Updated get request files return type
Browse files Browse the repository at this point in the history
  • Loading branch information
Feramance committed Dec 5, 2024
1 parent f7ee655 commit 1888f8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qBitrr/arss.py
Original file line number Diff line number Diff line change
Expand Up @@ -1618,7 +1618,7 @@ def db_get_files_movies(self) -> list[list[MoviesFilesModel, bool, bool]] | None
entries.append([entry, False, False])
return entries

def db_get_request_files(self) -> Iterable[MoviesFilesModel | EpisodeFilesModel]:
def db_get_request_files(self) -> Iterable[tuple[MoviesFilesModel | EpisodeFilesModel, int]]:
entries = []
if (not self.ombi_search_requests) or (not self.overseerr_requests):
yield None
Expand Down

0 comments on commit 1888f8b

Please sign in to comment.