Parse input arguments.
()
| 223 | |
| 224 | |
| 225 | def parse_args(): |
| 226 | """Parse input arguments.""" |
| 227 | parser = argparse.ArgumentParser(description='SORT demo') |
| 228 | parser.add_argument('--display', dest='display', help='Display online tracker output (slow) [False]', |
| 229 | action='store_true') |
| 230 | args = parser.parse_args() |
| 231 | return args |
nothing calls this directly
no outgoing calls
no test coverage detected