diff --git a/src/scyjava/__init__.py b/src/scyjava/__init__.py index 8b68b100..c4b65b0d 100644 --- a/src/scyjava/__init__.py +++ b/src/scyjava/__init__.py @@ -29,7 +29,8 @@ _logger = logging.getLogger(__name__) # Set of module properties -_CONSTANTS: Dict[str, Callable] = {} +# Properties are keyed on their module NAME, with values being dictionaries of constants and their mappings. +_CONSTANTS: Dict[str, Dict[str, Callable]] = {} def constant(func: Callable[[], Any], cache=True) -> Callable[[], Any]: