(self, typ: Type, context: Context)
| 578 | self.fail(msg, context, code=codes.OPERATOR) |
| 579 | |
| 580 | def not_callable(self, typ: Type, context: Context) -> Type: |
| 581 | self.fail(message_registry.NOT_CALLABLE.format(format_type(typ, self.options)), context) |
| 582 | return AnyType(TypeOfAny.from_error) |
| 583 | |
| 584 | def untyped_function_call(self, callee: CallableType, context: Context) -> Type: |
| 585 | name = callable_name(callee) or "(unknown)" |
no test coverage detected