MCPcopy Create free account
hub / github.com/Vegetebird/GraphMLP / parse_args

Function parse_args

demo/lib/sort/sort.py:225–231  ·  view source on GitHub ↗

Parse input arguments.

()

Source from the content-addressed store, hash-verified

223
224
225def 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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected