get it right pyright

This commit is contained in:
Khaleel Al-Adhami 2025-01-07 16:51:16 -08:00
parent 0430ab42c2
commit 5d099262f3

View File

@ -2932,7 +2932,7 @@ BASE_TYPE = TypeVar("BASE_TYPE", bound=Base)
class Field(Generic[T]):
"""Shadow class for Var to allow for type hinting in the IDE."""
def __set__(self, instance, value: T):
def __set__(self, instance, value: T): # pyright: ignore[reportGeneralTypeIssues]
"""Set the Var.
Args: