Skip to content

Commit

Permalink
Fix Wikimedia provider when verbose logging enabled (#4753)
Browse files Browse the repository at this point in the history
  • Loading branch information
stacimc authored Aug 16, 2024
1 parent c53fb3d commit 711f2c5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ def get_should_continue(self, response_json):
def get_batch_data(self, response_json):
image_pages = self.get_media_pages(response_json)
if image_pages is not None:
return image_pages.values()
return list(image_pages.values())
return None

@staticmethod
Expand Down

0 comments on commit 711f2c5

Please sign in to comment.