Source code for squadds.simulations.simulator from abc import ABC, abstractmethod [docs] class Simulator(ABC): [docs] @abstractmethod def get_design_screenshot(): pass