Copy of the numpydoc error function, since ERROR_MSGS can't be updated with our custom errors yet.
(code, **kwargs)
| 77 | |
| 78 | |
| 79 | def pandas_error(code, **kwargs): |
| 80 | """ |
| 81 | Copy of the numpydoc error function, since ERROR_MSGS can't be updated |
| 82 | with our custom errors yet. |
| 83 | """ |
| 84 | return code, ERROR_MSGS[code].format(**kwargs) |
| 85 | |
| 86 | |
| 87 | def get_api_items(api_doc_fd): |
no test coverage detected