Skip to content

Commit

Permalink
Update modflow.py
Browse files Browse the repository at this point in the history
  • Loading branch information
martinvonk committed Aug 9, 2024
1 parent 1d8dde8 commit 3ea4639
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions pastas_plugins/modflow/modflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,13 @@


class Modflow(Protocol):
def __init__(self) -> None:
...
def __init__(self) -> None: ...

def get_init_parameters(self) -> DataFrame:
...
def get_init_parameters(self) -> DataFrame: ...

def create_model(self) -> None:
...
def create_model(self) -> None: ...

def simulate(self) -> ArrayLike:
...
def simulate(self) -> ArrayLike: ...


class ModflowRch:
Expand Down

0 comments on commit 3ea4639

Please sign in to comment.