(annotation)
| 1451 | def formatannotationrelativeto(object): |
| 1452 | module = getattr(object, '__module__', None) |
| 1453 | def _formatannotation(annotation): |
| 1454 | return formatannotation(annotation, module) |
| 1455 | return _formatannotation |
| 1456 | |
| 1457 |
nothing calls this directly
no test coverage detected