Skip to content

Commit

Permalink
add filters argument
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Jurgen Griesfeller committed Apr 29, 2024
1 parent 1e9dc62 commit 84ae829
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/pyaro_readers/harpreader/harpreader.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,12 @@ class AeronetHARPReader(AutoFilterReaderEngine.AutoFilterReader):
Reader for netCDF files which follow the HARP convention.
"""

def __init__(self, file: str):
self._filters = []
def __init__(
self,
file: str,
filters=[],
):
self._filters = filters
if os.path.isfile(file):
self._file = file
else:
Expand Down

0 comments on commit 84ae829

Please sign in to comment.