(schema_name, api="fn", args=None)
| 384 | |
| 385 | |
| 386 | def _docstring_generator_fn(schema_name, api="fn", args=None): |
| 387 | schema = _b.GetSchema(schema_name) |
| 388 | ret = _docstring_generator_main(schema_name, api) |
| 389 | if schema.IsDocPartiallyHidden(): |
| 390 | return ret |
| 391 | ret += _get_inputs_doc(schema, api) |
| 392 | ret += """ |
| 393 | Keyword args |
| 394 | ------------ |
| 395 | """ |
| 396 | ret += _get_kwargs(schema, api, args) |
| 397 | return ret |
nothing calls this directly
no test coverage detected