forked from adamm/git-importer
Fix up some code after aplanas' continued review
This commit is contained in:
@@ -1,6 +1,10 @@
|
||||
class AbstractWalker:
|
||||
from abc import ABC, abstractmethod
|
||||
|
||||
|
||||
class AbstractWalker(ABC):
|
||||
"""Just a duck type, most likely not needed by python, but I
|
||||
find interface classes preferable (java school)"""
|
||||
|
||||
@abstractmethod
|
||||
def call(self, node, is_source):
|
||||
pass
|
||||
|
Reference in New Issue
Block a user