#!/usr/bin/env python3 # -*- coding: utf-8 -*- from typing import Self, Optional, Any from abc import ABC class ProcedureAbstractInterface(ABC): def __init__(self:Self, cxcv:Any, key:str, via:str, inputs:Optional[dict[str, Any|None]|tuple[Any|None, ...]|list[Any|None]] = None ) -> None: self.key:str = key self.via:str = via