(
annotation: str,
context: EvaluationContext,
)
| 1321 | |
| 1322 | |
| 1323 | def _eval_annotation( |
| 1324 | annotation: str, |
| 1325 | context: EvaluationContext, |
| 1326 | ): |
| 1327 | return ( |
| 1328 | _eval_node_name(annotation, context) |
| 1329 | if isinstance(annotation, str) |
| 1330 | else annotation |
| 1331 | ) |
| 1332 | |
| 1333 | |
| 1334 | class _GetItemDuck(dict): |
no test coverage detected
searching dependent graphs…