Add typehint

This commit is contained in:
xmatthias 2018-05-31 20:41:05 +02:00
parent 45909af7e0
commit 48516e6e1e

View File

@ -17,7 +17,7 @@ class Arguments(object):
Arguments Class. Manage the arguments received by the cli
"""
def __init__(self, args: List[str], description: str):
def __init__(self, args: List[str], description: str) -> None:
self.args = args
self.parsed_arg = None
self.parser = argparse.ArgumentParser(description=description)