Skip to content

Commit

Permalink
Make the query nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
HebaruSan committed Oct 20, 2024
1 parent 67997c7 commit ece8da3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion netkan/netkan/download_counter.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ def __init__(self, game_id: str, ckm_repo: CkanMetaRepo, github_token: str) -> N
def get_counts(self) -> None:
graph_query = GitHubBatchedQuery(self.github_token)
sd_query = SpaceDockBatchedQuery()
ia_query = InternetArchiveBatchedQuery()
ia_query: Optional[InternetArchiveBatchedQuery] = InternetArchiveBatchedQuery()
for ckan in self.ckm_repo.all_latest_modules(): # pylint: disable=too-many-nested-blocks
if ckan.kind == 'dlc':
continue
Expand Down

0 comments on commit ece8da3

Please sign in to comment.