diff --git a/django-stubs/db/models/options.pyi b/django-stubs/db/models/options.pyi index e25d2f6..3b2f05d 100644 --- a/django-stubs/db/models/options.pyi +++ b/django-stubs/db/models/options.pyi @@ -111,7 +111,7 @@ class Options(Generic[_M]): def managers_map(self) -> Dict[str, Manager]: ... @property def db_returning_fields(self) -> List[Field]: ... - def get_field(self, field_name: Union[Callable, str]) -> Field: ... + def get_field(self, field_name: Union[Callable[..., Any], str]) -> Field[Any, Any]: ... def get_base_chain(self, model: Type[Model]) -> List[Type[Model]]: ... def get_parent_list(self) -> List[Type[Model]]: ... def get_ancestor_link(self, ancestor: Type[Model]) -> Optional[OneToOneField]: ...