(typ: mypy.types.CallableType)
| 5330 | |
| 5331 | |
| 5332 | def get_func_def(typ: mypy.types.CallableType) -> SymbolNode | None: |
| 5333 | definition = typ.definition |
| 5334 | if isinstance(definition, Decorator): |
| 5335 | definition = definition.func |
| 5336 | return definition |
| 5337 | |
| 5338 | |
| 5339 | def local_definitions( |
no test coverage detected
searching dependent graphs…