From 576ad183f4b0802afbf8cde4edb683017f2c3b36 Mon Sep 17 00:00:00 2001 From: wpbonelli Date: Tue, 21 Nov 2023 10:57:15 -0500 Subject: [PATCH] refactor: re-export get_suffixes from executables module --- modflow_devtools/executables.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modflow_devtools/executables.py b/modflow_devtools/executables.py index 0c9705e..9e34149 100644 --- a/modflow_devtools/executables.py +++ b/modflow_devtools/executables.py @@ -2,6 +2,11 @@ from types import SimpleNamespace from typing import Dict +from modflow_devtools.misc import get_suffixes + +# re-export for backwards-compatibility (used to be here) +get_suffixes = get_suffixes + class Executables(SimpleNamespace): """