(self)
| 3 | |
| 4 | class TestOptions(BaseOptions): |
| 5 | def initialize(self): |
| 6 | BaseOptions.initialize(self) |
| 7 | self._parser.add_argument('--input_path', type=str, help='path to image') |
| 8 | self._parser.add_argument('--output_dir', type=str, default='./output', help='output path') |
| 9 | self.is_train = False |
nothing calls this directly
no outgoing calls
no test coverage detected