Skip to content

Commit

Permalink
Remove import workarounds (#190)
Browse files Browse the repository at this point in the history
Fixes #124.
This only removes lines because the imports didn't seem to be used.
  • Loading branch information
visr authored Dec 9, 2024
1 parent f612b3b commit 932a39b
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 16 deletions.
10 changes: 0 additions & 10 deletions src/peilbeheerst_model/02_crossings_to_ribasim_notebook.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import sys
import warnings
from pathlib import Path

import pandas as pd
import ribasim
Expand All @@ -14,14 +12,6 @@
ribasim.__version__


# load ribasim_nl
module_path = Path.cwd() / "../ribasim_nl/"
sys.path.append(str(module_path))

# load crossings_to_ribasim.py
sys.path.append("peilbeheerst_model")


# # Amstel, Gooi en Vecht


Expand Down
5 changes: 0 additions & 5 deletions src/peilbeheerst_model/03_test_outlets.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
import sys

from outlets import case1, case2

sys.path.append("peilbeheerst_model")


# # Case 1

# ### Example 1: boundary and basin levels on target
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import pathlib
import warnings

import load_ribasim # noqa: F401
import pandas as pd
import ribasim
import ribasim.nodes
Expand Down

0 comments on commit 932a39b

Please sign in to comment.