(self, context: Context, code: ErrorCode | None)
| 1219 | self.fail(f"{format_type(type, self.options)} object is not iterable", context) |
| 1220 | |
| 1221 | def possible_missing_await(self, context: Context, code: ErrorCode | None) -> None: |
| 1222 | self.note('Maybe you forgot to use "await"?', context, code=code) |
| 1223 | |
| 1224 | def incompatible_operator_assignment(self, op: str, context: Context) -> None: |
| 1225 | self.fail(f"Result type of {op} incompatible in assignment", context) |
no test coverage detected