@@ -1,4 +1,8 @@
-class converter:
+from abc import ABC, abstractmethod
+
+class converter(ABC):
@staticmethod
+ @abstractmethod
def convert(obj):
pass