(schema_name, api="ops", args=None)
| 289 | |
| 290 | |
| 291 | def _docstring_generator_class(schema_name, api="ops", args=None): |
| 292 | schema = _b.GetSchema(schema_name) |
| 293 | ret = _docstring_generator_main(schema_name, api) |
| 294 | if schema.IsDocPartiallyHidden(): |
| 295 | return ret |
| 296 | ret += """ |
| 297 | Keyword args |
| 298 | ------------ |
| 299 | """ |
| 300 | ret += _get_kwargs(schema, api=api, args=args) |
| 301 | return ret |
| 302 | |
| 303 | |
| 304 | def _supported_layouts_str(supported_layouts): |
nothing calls this directly
no test coverage detected