Skip to content

Commit 3677df2

Browse files
committed
fix
1 parent 6de4364 commit 3677df2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

flopy4/mf6/component.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ class Component(ABC, MutableMapping):
2626
children are also `Component`s, but mypy does not. TODO: fix??
2727
"""
2828

29-
_read = IOMethod(ComponentReader) # type: ignore
30-
_write = IOMethod(ComponentWriter) # type: ignore
29+
_load = IOMethod(Loader) # type: ignore
30+
_write = IOMethod(Writer) # type: ignore
3131

3232
@classmethod
3333
def __attrs_init_subclass__(cls):

0 commit comments

Comments
 (0)