A placeholder class to destringify annotations from ast
| 106 | |
| 107 | |
| 108 | class direct_repr: |
| 109 | """ |
| 110 | A placeholder class to destringify annotations from ast |
| 111 | """ |
| 112 | def __init__(self, value): |
| 113 | self._repr = value |
| 114 | |
| 115 | def __repr__(self): |
| 116 | return self._repr |
| 117 | |
| 118 | |
| 119 | def generate_function(name, called_fullname, template, **kwargs): |
no outgoing calls
no test coverage detected
searching dependent graphs…