We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Why doesn't asyncpg.Record inherit collections.abc.Mapping[str, Any]? This is a valid code:
asyncpg.Record
collections.abc.Mapping[str, Any]
record: asyncpg.Record ... some_func(**record)
But mypy says: error: Argument after ** must be a mapping, not "Record".
error: Argument after ** must be a mapping, not "Record"