fundamentals/python_code/oop/SOLID/bird/interfaces/FlyingBehaviourInterface.py
Abhishek Singh Thakur 59d2d5acfb
Adds python code (#7)
2022-10-13 19:54:41 +05:30

6 lines
132 B
Python

from abc import ABC, abstractmethod
class FlyingBehaviourInterface(ABC):
@abstractmethod
def makeFly() -> None:
...