Skip to content

Commit

Permalink
Merge pull request #12 from martindurant/fix
Browse files Browse the repository at this point in the history
Pass kwargs to Catalog
  • Loading branch information
martindurant authored Dec 14, 2020
2 parents 292a75f + 98faa4a commit a6eeeed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions intake_thredds/cat.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
class ThreddsCatalog(Catalog):
name = 'thredds_cat'

def __init__(self, url, metadata=None):
def __init__(self, url, **kwargs):
self.url = url
super().__init__(metadata=metadata)
super().__init__(**kwargs)

def _load(self):
from siphon.catalog import TDSCatalog
Expand Down

0 comments on commit a6eeeed

Please # to comment.