yaw_miss_analysis_behavior.py 199 B

12345678910
  1. from abc import ABC, abstractmethod
  2. class YawMissAnalysisBehavior(ABC):
  3. @abstractmethod
  4. def my_method(self):
  5. pass
  6. @abstractmethod
  7. def another_method(self, arg):
  8. pass