MCPcopy Index your code
hub / github.com/python/mypy / possible_missing_await

Method possible_missing_await

mypy/messages.py:1221–1222  ·  view source on GitHub ↗
(self, context: Context, code: ErrorCode | None)

Source from the content-addressed store, hash-verified

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)

Callers 2

report_missing_attributeFunction · 0.80

Calls 1

noteMethod · 0.95

Tested by

no test coverage detected