from Interpreter.Repo import Repo from Interpreter.Utils import Utils class Validator: def __init__(self, repo: Repo, utils: Utils) -> None: self.__repo = repo self.__utils = utils def validate(self, ast: []) -> None: pass