(parser, args)
| 69 | |
| 70 | |
| 71 | def _require_nodeid(parser, args): |
| 72 | # check that a nodeid has been given explicitly, a bit hackish... |
| 73 | if args.nodeid == "i=84" and args.path == "": |
| 74 | parser.print_usage() |
| 75 | print("{0}: error: A NodeId or BrowsePath is required".format(parser.prog)) |
| 76 | sys.exit(1) |
| 77 | |
| 78 | |
| 79 | def parse_args(parser, requirenodeid=False): |
no outgoing calls
no test coverage detected