mirror of
https://github.com/robindhole/fundamentals.git
synced 2025-07-01 15:06:48 +00:00
6 lines
120 B
Python
6 lines
120 B
Python
from abc import ABC, abstractmethod
|
|
|
|
class FlyableInterface(ABC):
|
|
@abstractmethod
|
|
def fly() -> None:
|
|
... |