Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
b8raoult committed Feb 19, 2024
1 parent 6fbfe9a commit a1d594f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions climetlab/readers/netcdf/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@


class NetCDFReader(Reader, NetCDFFieldSet):
def __init__(self, source, path, opendap=False, flavour=None):
def __init__(self, source, path):
Reader.__init__(self, source, path)
NetCDFFieldSet.__init__(self, path, opendap=opendap, flavour=flavour)
NetCDFFieldSet.__init__(self, path)


def reader(source, path, magic=None, deeper_check=False):
Expand Down

0 comments on commit a1d594f

Please sign in to comment.