From fde81ca904a087fef7aa93827de682c15289a2b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=98yvind=20Eide?= Date: Thu, 22 Aug 2024 09:58:16 +0200 Subject: [PATCH] Remove false positiv runpath check --- src/ert/run_models/manual_update.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/ert/run_models/manual_update.py b/src/ert/run_models/manual_update.py index 0deeeb3557a..7cdac096b8b 100644 --- a/src/ert/run_models/manual_update.py +++ b/src/ert/run_models/manual_update.py @@ -79,3 +79,7 @@ def name(cls) -> str: @classmethod def description(cls) -> str: return "Load parameters and responses from existing → update" + + def check_if_runpath_exists(self) -> bool: + # Will not run a forward model, so does not create files on runpath + return False