Add missing typing info
Signed-off-by: Christophe Bedard <bedard.christophe@gmail.com>
This commit is contained in:
parent
975adac7f9
commit
0c592bb179
2 changed files with 2 additions and 2 deletions
|
@ -39,7 +39,7 @@ def add_args(parser: argparse.ArgumentParser) -> None:
|
|||
'under $trace_directory (default: %(default)s)')
|
||||
|
||||
|
||||
def parse_args():
|
||||
def parse_args() -> argparse.Namespace:
|
||||
parser = argparse.ArgumentParser(
|
||||
description='Convert trace data to a file.')
|
||||
add_args(parser)
|
||||
|
|
|
@ -42,7 +42,7 @@ def add_args(parser: argparse.ArgumentParser) -> None:
|
|||
help='hide/suppress results from being printed')
|
||||
|
||||
|
||||
def parse_args():
|
||||
def parse_args() -> argparse.Namespace:
|
||||
parser = argparse.ArgumentParser(description='Process a file converted from a trace '
|
||||
'directory and output model data.')
|
||||
add_args(parser)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue