Parse input arguments.
()
| 231 | |
| 232 | |
| 233 | def parse_args(): |
| 234 | """Parse input arguments.""" |
| 235 | parser = argparse.ArgumentParser(description='SORT demo') |
| 236 | parser.add_argument('--display', dest='display', help='Display online tracker output (slow) [False]', |
| 237 | action='store_true') |
| 238 | args = parser.parse_args() |
| 239 | return args |
no outgoing calls
no test coverage detected