From 141a64cf33d242d3191b3149e75ca06495044feb Mon Sep 17 00:00:00 2001 From: Dan Puttick Date: Tue, 16 May 2017 15:02:37 -0400 Subject: [PATCH] Remove extra comments from helpers.py * Was thinking about removing processdir and main, but somebody might still want to use them + they could be a helpful reference for a new person. --- kittengroomer/helpers.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/kittengroomer/helpers.py b/kittengroomer/helpers.py index 998015c..0a7fd09 100644 --- a/kittengroomer/helpers.py +++ b/kittengroomer/helpers.py @@ -331,13 +331,11 @@ class KittenGroomerBase(object): ####################### - # TODO: if we move main() we can get rid of this as well def processdir(self, src_dir, dst_dir): """Implement this function to define file processing behavior.""" raise ImplementationRequired('Please implement processdir.') -# TODO: Should this get moved to filecheck? It isn't really API code and somebody can implement it themselves def main(kg_implementation, description='Call a KittenGroomer implementation to process files present in the source directory and copy them to the destination directory.'): parser = argparse.ArgumentParser(prog='KittenGroomer', description=description) parser.add_argument('-s', '--source', type=str, help='Source directory')