From b5cca0ef7c1a6179fc5085e6184fcb05b98cd9d1 Mon Sep 17 00:00:00 2001 From: w-bonelli Date: Wed, 30 Apr 2025 22:16:55 -0400 Subject: [PATCH] docs(models): fix docstring The LocalRegistry was described as lazy but it is eager. --- modflow_devtools/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modflow_devtools/models.py b/modflow_devtools/models.py index 0c821b3a..7388f547 100644 --- a/modflow_devtools/models.py +++ b/modflow_devtools/models.py @@ -92,7 +92,7 @@ class LocalRegistry(ModelRegistry): *Not* persistent — lives only in memory, unlike `PoochRegistry`. - The registry is loaded lazily upon first access by recursively scanning + The registry is loaded eagerly on initialization by recursively scanning the given directory for models (located by the presence of a namefile) and corresponding input files.