]> www.average.org Git - loctrkd.git/blobdiff - loctrkd/protomodule.py
Cleanup some of the types
[loctrkd.git] / loctrkd / protomodule.py
index 446fec6215f77c3723744e571c5bd463f1b1115f..1d61759c19239b9e774e2bdc811eb6d53dd4fc19 100644 (file)
@@ -88,6 +88,10 @@ class ProtoClass(Protocol, metaclass=_MetaProto):
     IN_KWARGS: Tuple[Tuple[str, Callable[[Any], Any], Any], ...] = ()
     OUT_KWARGS: Tuple[Tuple[str, Callable[[Any], Any], Any], ...] = ()
 
+    @classmethod
+    def proto_name(cls) -> str:
+        ...
+
     class In:
         def __init__(self, *args: Any, **kwargs: Any) -> None:
             ...