From 3669712bec78402e948d67b7b236466a0368b260 Mon Sep 17 00:00:00 2001 From: Arthur Lu Date: Wed, 24 Nov 2021 02:27:03 +0000 Subject: [PATCH] removed commented out code Signed-off-by: Arthur Lu --- src/cli/module.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/cli/module.py b/src/cli/module.py index 3c89fc4..e6ef29a 100644 --- a/src/cli/module.py +++ b/src/cli/module.py @@ -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):