Skip to content

Commit fc6e1b7

Browse files
committed
uopdated docstrings
1 parent 3f20b3e commit fc6e1b7

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

imod/mf6/dis.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,8 +181,8 @@ def from_imod5_data(
181181
imod5_data: dict
182182
Dictionary with iMOD5 data. This can be constructed from the
183183
:func:`imod.formats.prj.open_projectfile_data` method.
184-
regridder_types: dict, optional
185-
Optional dictionary with regridder types for a specific variable.
184+
regridder_types: RegridMethodType, optional
185+
Optional dataclass with regridder types for a specific variable.
186186
Use this to override default regridding methods.
187187
188188
Returns

imod/mf6/drn.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,8 +194,8 @@ def from_imod5_data(
194194
allocation option.
195195
distributing_option: dict[str, DISTRIBUTING_OPTION]
196196
distributing option.
197-
regridder_types: dict, optional
198-
Optional dictionary with regridder types for a specific variable.
197+
regridder_types: RegridMethodType, optional
198+
Optional dataclass with regridder types for a specific variable.
199199
Use this to override default regridding methods.
200200
201201
Returns

imod/mf6/ic.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,8 @@ def from_imod5_data(
119119
target_grid: GridDataArray
120120
The grid that should be used for the new package. Does not
121121
need to be identical to one of the input grids.
122-
regridder_types: dict, optional
123-
Optional dictionary with regridder types for a specific variable.
122+
regridder_types: RegridMethodType, optional
123+
Optional dataclass with regridder types for a specific variable.
124124
Use this to override default regridding methods.
125125
126126
Returns

imod/mf6/npf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -477,8 +477,8 @@ def from_imod5_data(
477477
target_grid: GridDataArray
478478
The grid that should be used for the new package. Does not
479479
need to be identical to one of the input grids.
480-
regridder_types: dict, optional
481-
Optional dictionary with regridder types for a specific variable.
480+
regridder_types: RegridMethodType, optional
481+
Optional dataclass with regridder types for a specific variable.
482482
Use this to override default regridding methods.
483483
484484
Returns

imod/mf6/rch.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,8 +178,8 @@ def from_imod5_data(
178178
dis_pkg: GridDataArray
179179
The discretization package for the simulation. Its grid does not
180180
need to be identical to one of the input grids.
181-
regridder_types: dict, optional
182-
Optional dictionary with regridder types for a specific variable.
181+
regridder_types: RegridMethodType, optional
182+
Optional dataclass with regridder types for a specific variable.
183183
Use this to override default regridding methods.
184184
185185
Returns

imod/mf6/sto.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -347,8 +347,8 @@ def from_imod5_data(
347347
target_grid: GridDataArray
348348
The grid that should be used for the new package. Does not
349349
need to be identical to one of the input grids.
350-
regridder_types: dict, optional
351-
Optional dictionary with regridder types for a specific variable.
350+
regridder_types: RegridMethodType, optional
351+
Optional dataclass with regridder types for a specific variable.
352352
Use this to override default regridding methods.
353353
354354
Returns

0 commit comments

Comments
 (0)