소스 검색

Inherited converter from abc.ABC

Vsevolod Levitan 1 년 전
부모
커밋
9e1df6c87f
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 5 1
      src/convert/converter.py

+ 5 - 1
src/convert/converter.py

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