Skip to content

Commit c97112d

Browse files
committed
fix the path update for the other plugin
1 parent 68918ae commit c97112d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

geos-pv/src/geos/pv/plugins/generic_processing/PVFillPartialArrays.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
from vtkmodules.vtkCommonDataModel import vtkMultiBlockDataSet
1616

1717
# update sys.path to load all GEOS Python Package dependencies
18-
geos_pv_path: Path = Path( __file__ ).parent.parent.parent.parent.parent
18+
geos_pv_path: Path = Path( __file__ ).parent.parent.parent.parent.parent.parent
1919
sys.path.insert( 0, str( geos_pv_path / "src" ) )
2020
from geos.pv.utils.config import update_paths
2121

geos-pv/src/geos/pv/plugins/post_processing/PVGeosLogReader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
from typing_extensions import Self
1616

1717
# update sys.path to load all GEOS Python Package dependencies
18-
geos_pv_path: Path = Path( __file__ ).parent.parent.parent.parent.parent
18+
geos_pv_path: Path = Path( __file__ ).parent.parent.parent.parent.parent.parent
1919
sys.path.insert( 0, str( geos_pv_path / "src" ) )
2020
from geos.pv.utils.config import update_paths
2121

0 commit comments

Comments
 (0)