(self, parsers, **kwargs)
| 114 | parser.add_argument("params", nargs="*", help="Parameters to be passed to the executable being run " ); |
| 115 | |
| 116 | def addKeychainArgument(self, parsers, **kwargs): |
| 117 | for parser in parsers: |
| 118 | parser.add_argument('-k', '--keychain', action=EnvDefault, help='path to the keychain', **kwargs) |
| 119 | |
| 120 | def addPasswordArgument(self, parsers, **kwargs): |
| 121 | for parser in parsers: |
no outgoing calls
no test coverage detected