(signature: inspect.Signature, *, is_async: bool)
| 1967 | |
| 1968 | |
| 1969 | def describe_runtime_callable(signature: inspect.Signature, *, is_async: bool) -> str: |
| 1970 | return f'{"async " if is_async else ""}def {signature}' |
| 1971 | |
| 1972 | |
| 1973 | class _TypeCheckOnlyBaseMapper(mypy.types.TypeTranslator): |
no outgoing calls
no test coverage detected
searching dependent graphs…