We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6de4364 commit 3677df2Copy full SHA for 3677df2
flopy4/mf6/component.py
@@ -26,8 +26,8 @@ class Component(ABC, MutableMapping):
26
children are also `Component`s, but mypy does not. TODO: fix??
27
"""
28
29
- _read = IOMethod(ComponentReader) # type: ignore
30
- _write = IOMethod(ComponentWriter) # type: ignore
+ _load = IOMethod(Loader) # type: ignore
+ _write = IOMethod(Writer) # type: ignore
31
32
@classmethod
33
def __attrs_init_subclass__(cls):
0 commit comments