Abhishek Singh Thakur 59d2d5acfb
Adds python code (#7)
2022-10-13 19:54:41 +05:30

6 lines
118 B
Python

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