From ff99cd060c244d4fa9853ba878de48ad11626257 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Hensgen?= <24550538+sebhmg@users.noreply.github.com> Date: Wed, 5 Nov 2025 16:19:03 -0500 Subject: [PATCH] [GEOPY-2561] fix return typehint --- geoapps_utils/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geoapps_utils/base.py b/geoapps_utils/base.py index c0a402d8..2cb2325f 100644 --- a/geoapps_utils/base.py +++ b/geoapps_utils/base.py @@ -101,7 +101,7 @@ def read_ui_json(cls, filepath: str | Path, **kwargs) -> InputFile: return InputFile.read_ui_json(filepath, validations=cls._validations, **kwargs) @classmethod - def start(cls, filepath: str | Path | InputFile, mode="r+", **kwargs) -> Driver: + def start(cls, filepath: str | Path | InputFile, mode="r+", **kwargs) -> Self: """ Run application specified by 'filepath' ui.json file.