Skip to content

Commit b994bd9

Browse files
author
Øyvind Lind-Johansen
committed
more fixes
1 parent b1c5aaa commit b994bd9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

webviz_subsurface/plugins/_rft_plotter/_plugin.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,8 @@ class Ids(StrEnum):
102102
def __init__(
103103
self,
104104
webviz_settings: WebvizSettings,
105-
rft: Path = Path("share/results/tables/rft.csv"),
106-
rft_ert: Path = Path("share/results/tables/rft_ert.csv"),
105+
rft: str = "share/results/tables/rft.csv",
106+
rft_ert: str = "share/results/tables/rft_ert.csv",
107107
csvfile_rft: Path = None,
108108
csvfile_rft_ert: Path = None,
109109
ensembles: Optional[List[str]] = None,

webviz_subsurface/plugins/_rft_plotter/_utils/_rft_plotter_data_model.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ def __init__(
2727
self,
2828
webviz_settings: WebvizSettings,
2929
ensembles: Optional[List[str]],
30-
rft: Path = None,
31-
rft_ert: Path = None,
30+
rft: str,
31+
rft_ert: str,
3232
formations: Path = None,
3333
faultlines: Path = None,
3434
obsdata: Path = None,

0 commit comments

Comments
 (0)