We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd651fb commit 8e166cfCopy full SHA for 8e166cf
src/ert/libres_facade.py
@@ -160,9 +160,9 @@ def have_observations(self) -> bool:
160
return self._enkf_main.have_observations()
161
162
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))
+ actives = self.get_active_realizations()
+ iter_0_paths = set(self.get_run_paths(actives, 0))
+ iter_1_paths = set(self.get_run_paths(actives, 1))
166
return len(iter_0_paths) == len(actives) and iter_0_paths != iter_1_paths
167
168
@property
0 commit comments