Skip to content

Commit

Permalink
Pass kwargs to Catalog
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Durant committed Dec 14, 2020
1 parent 292a75f commit 98faa4a
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 98faa4a

Please # to comment.