removed commented out code

Signed-off-by: Arthur Lu <learthurgo@gmail.com>
This commit is contained in:
Arthur Lu 2021-11-24 02:27:03 +00:00
parent 356b71be62
commit 3669712bec

View File

@ -24,16 +24,6 @@ class Module(metaclass = abc.ABCMeta):
@abc.abstractmethod
def run(self, exec_threads, *args, **kwargs):
raise NotImplementedError
"""
@abc.abstractmethod
def load_data(self):
raise NotImplementedError
@abc.abstractmethod
def process_data(self, exec_threads):
raise NotImplementedError
@abc.abstractmethod
def push_results(self):
raise NotImplementedError"""
class Match (Module):