From 39626f5bc8de5db39902c98dcebcb03289cf4020 Mon Sep 17 00:00:00 2001 From: Nathan McDougall Date: Sat, 13 Dec 2025 07:54:01 +1300 Subject: [PATCH] Add space to warning message (grammar) --- pyemu/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyemu/__init__.py b/pyemu/__init__.py index 15dd1e1d..e669bc5e 100644 --- a/pyemu/__init__.py +++ b/pyemu/__init__.py @@ -35,7 +35,7 @@ except (ModuleNotFoundError, ImportError) as e: import warnings warnings.warn("Failed to import legacy module. " - "May impact ability to access older methods." + "May impact ability to access older methods. " f"{type(e).__name__} {e.msg}") from ._version import get_versions