Skip to content

Commit 8e166cf

Browse files
committed
Fixup facade usage
1 parent cd651fb commit 8e166cf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/ert/libres_facade.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -160,9 +160,9 @@ def have_observations(self) -> bool:
160160
return self._enkf_main.have_observations()
161161

162162
def is_valid_runpath(self) -> bool:
163-
actives = self.facade.get_active_realizations()
164-
iter_0_paths = set(self.facade.get_run_paths(actives, 0))
165-
iter_1_paths = set(self.facade.get_run_paths(actives, 1))
163+
actives = self.get_active_realizations()
164+
iter_0_paths = set(self.get_run_paths(actives, 0))
165+
iter_1_paths = set(self.get_run_paths(actives, 1))
166166
return len(iter_0_paths) == len(actives) and iter_0_paths != iter_1_paths
167167

168168
@property

0 commit comments

Comments
 (0)