git-importer/lib/abstract_walker.py
2022-11-02 07:20:53 +01:00

7 lines
193 B
Python

class AbstractWalker:
"""Just a duck type, most likely not needed by python, but I
find interface classes preferable (java school)"""
def call(self, node, is_source):
pass