PySca/pysca/interfaces/AbstractTargetGenerator.py

10 lines
241 B
Python
Raw Normal View History

2020-11-08 09:25:48 +00:00
from abc import ABC, abstractmethod
class AbstractTargetGenerator(ABC):
@abstractmethod
def next(self) -> object:
raise NotImplemented
@abstractmethod
def configure(self, configuration):
raise NotImplemented