mirror of https://github.com/CIRCL/PyCIRCLean
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.pull/16/head
parent
e51a503c33
commit
141a64cf33
|
@ -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):
|
def processdir(self, src_dir, dst_dir):
|
||||||
"""Implement this function to define file processing behavior."""
|
"""Implement this function to define file processing behavior."""
|
||||||
raise ImplementationRequired('Please implement processdir.')
|
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.'):
|
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 = argparse.ArgumentParser(prog='KittenGroomer', description=description)
|
||||||
parser.add_argument('-s', '--source', type=str, help='Source directory')
|
parser.add_argument('-s', '--source', type=str, help='Source directory')
|
||||||
|
|
Loading…
Reference in New Issue