(struct_info, dict_globals: dict[str, Any] | None = None)
| 525 | |
| 526 | |
| 527 | def _normalize_struct_info(struct_info, dict_globals: dict[str, Any] | None = None) -> StructInfo: |
| 528 | if isinstance(struct_info, StructInfo): |
| 529 | return struct_info |
| 530 | else: |
| 531 | proxy = _normalize_struct_info_proxy(struct_info) |
| 532 | return proxy.as_struct_info(dict_globals) |
no test coverage detected
searching dependent graphs…