(obj: Any)
| 58 | from string.templatelib import Template as Template |
| 59 | |
| 60 | def get_annotations(obj: Any) -> Mapping[str, Any]: |
| 61 | return annotationlib.get_annotations( |
| 62 | obj, format=annotationlib.Format.FORWARDREF |
| 63 | ) |
| 64 | |
| 65 | else: |
| 66 |
no outgoing calls
no test coverage detected