from abc import ABC from . import interfaces class GrpcClientWrapper(ABC): def __init__(self) -> None: self.object: interfaces.ObjectInterface self.container: interfaces.ContainerInterface self.netmap: interfaces.NetmapInterface