Skip to content

Commit

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


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
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,10 @@ version = { attr = "pastas_plugins.version.__version__" }

[tool.ruff]
extend-include = ["*.ipynb"]
lint.extend-select = ["I"]
show-fixes = true
fix = true


[tool.tox]
legacy_tox_ini = """
Expand Down

0 comments on commit 16b137b

Please sign in to comment.