Source code for utils.Parser from abc import ABC, abstractmethod from core.BooleanFunction import BooleanFunction [docs] class Parser(ABC): def __init__(self): super().__init__() [docs] @abstractmethod def parse(self) -> BooleanFunction: pass