You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pyright is disabled in pre-commit because of the following typing issues
migrate-groups-users/contrast_api.py
migrate-groups-users/contrast_api.py:36:38 - error: Argument missing for parameter "v" (reportGeneralTypeIssues)
migrate-groups-users/contrast_api.py:202:25 - error: Argument of type "Unknown | object | None" cannot be assigned to parameter "__obj" of type "Sized" in function "len"
Type "Unknown | object | None" cannot be assigned to type "Sized"
"object" is incompatible with protocol "Sized"
"__len__" is not present (reportGeneralTypeIssues)
migrate-groups-users/contrast_api.py:201:27 - error: Argument of type "Unknown | object | None" cannot be assigned to parameter "__iterable" of type "Iterable[Unknown]" in function "extend"
Type "Unknown | object | None" cannot be assigned to type "Iterable[Unknown]"
"object" is incompatible with protocol "Iterable[Unknown]"
"__iter__" is not present (reportGeneralTypeIssues)
migrate-groups-users/contrast_migrate_users_groups.py
migrate-groups-users/contrast_migrate_users_groups.py:52:34 - error: Argument missing for parameter "v" (reportGeneralTypeIssues)
migrate-groups-users/contrast_migrate_users_groups.py:56:42 - error: Argument of type "Literal['source']" cannot be assigned to parameter "default" of type "Undefined" in function "__init__"
"Literal['source']" is incompatible with "Undefined" (reportGeneralTypeIssues)
migrate-groups-users/contrast_migrate_users_groups.py:62:34 - error: Argument missing for parameter "v" (reportGeneralTypeIssues)
migrate-groups-users/contrast_migrate_users_groups.py:66:42 - error: Argument of type "Literal['destination']" cannot be assigned to parameter "default" of type "Undefined" in function "__init__"
"Literal['destination']" is incompatible with "Undefined" (reportGeneralTypeIssues)
7 errors, 0 warnings, 0 informations
The text was updated successfully, but these errors were encountered:
pyright is disabled in pre-commit because of the following typing issues
The text was updated successfully, but these errors were encountered: