from abc import ABC, abstractmethod

class ISomething(ABC,):
    @abstractmethod
    def __init__(self):
        pass

