Skip to content
This repository has been archived by the owner on Aug 4, 2023. It is now read-only.

Commit

Permalink
add args for class param
Browse files Browse the repository at this point in the history
  • Loading branch information
rwidom committed Aug 20, 2022
1 parent e78b6d9 commit 8bec026
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ class MetMuseumDataIngester(ProviderDataIngester):
endpoint = "https://collectionapi.metmuseum.org/public/collection/v1/objects"
DEFAULT_LICENSE_INFO = get_license_info(license_="cc0", license_version="1.0")

def __init__(self, date: str = None):
# adding args for automatically generated parameters from generate_tsv_filenames
def __init__(self, date: str = None, *args):
super(MetMuseumDataIngester, self).__init__(date=date)
self.retries = 5

Expand Down

0 comments on commit 8bec026

Please sign in to comment.