Skip to content

Commit

Permalink
fix ReleaseSitewideEntity
Browse files Browse the repository at this point in the history
  • Loading branch information
amCap1712 committed Jan 24, 2025
1 parent f84bcc7 commit 09841b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions listenbrainz_spark/stats/incremental/sitewide/release.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@

class ReleaseSitewideEntity(SitewideEntity):

def __init__(self):
super().__init__(entity="releases")
def __init__(self, stats_range):
super().__init__(entity="releases", stats_range=stats_range)

def get_cache_tables(self) -> List[str]:
return [RELEASE_METADATA_CACHE_DATAFRAME]
Expand Down

0 comments on commit 09841b9

Please sign in to comment.