make type checks viable

This commit is contained in:
2025-10-02 00:51:23 +05:30
parent 2f02f94b61
commit 8650297866
4 changed files with 16 additions and 13 deletions

View File

@ -1,7 +1,11 @@
from collections.abc import Callable
from typing import Any
class MapProcessorRegistry:
"""Registry for map processor functions"""
_processors = {}
_processors: dict[str, Callable[..., Any]] = {}
@classmethod
def register(cls, map_type_name):