(self)
| 2282 | op_type, *args, **kwargs) |
| 2283 | |
| 2284 | def __dir__(self): |
| 2285 | TriggerLazyImport() |
| 2286 | additional_methods = [ |
| 2287 | op |
| 2288 | for op in _REGISTERED_OPERATORS |
| 2289 | if '_ENGINE_' not in op] |
| 2290 | return sorted(set(chain( |
| 2291 | dir(type(self)), |
| 2292 | self.__dict__.keys(), |
| 2293 | additional_methods |
| 2294 | ))) |
| 2295 | |
| 2296 | def Python( |
| 2297 | self, |
nothing calls this directly
no test coverage detected