CXCV/Python/Interfaces/Abstracts/ProcedureAbstractInterface.py

16 lines
388 B
Python

#!/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