style(core): update types to pyright 1.1.404

Majority by volume is resolving the byte types promotion problem, which
pyright stopped ignoring
This commit is contained in:
matejcik
2025-09-10 11:43:05 +02:00
committed by matejcik
parent 7538d00f66
commit c3e6e7a25e
197 changed files with 1699 additions and 1394 deletions

View File

@@ -143,7 +143,7 @@ FILE_SPECIFIC_IGNORES: FileSpecificIgnores = {}
ALIASES: dict[str, str] = {
"awaitable-return-type": 'Return type of generator function must be compatible with "Generator',
"obscured-by-same-name": "is obscured by a declaration of the same name",
"int-into-enum": 'Expression of type "int.*" is incompatible with return type ".*"',
"int-into-enum": r'Type "int.*" is not assignable to return type ".*"',
}