(annotation)
| 1357 | def formatannotationrelativeto(object): |
| 1358 | module = getattr(object, '__module__', None) |
| 1359 | def _formatannotation(annotation): |
| 1360 | return formatannotation(annotation, module) |
| 1361 | return _formatannotation |
| 1362 | |
| 1363 |
nothing calls this directly
no test coverage detected