(typ: Type)
| 226 | |
| 227 | |
| 228 | def is_implicit_any(typ: Type) -> bool: |
| 229 | typ = get_proper_type(typ) |
| 230 | return isinstance(typ, AnyType) and not is_explicit_any(typ) |
| 231 | |
| 232 | |
| 233 | def _arg_accepts_function(typ: ProperType) -> bool: |
no test coverage detected
searching dependent graphs…