Options.verbose_name_raw is always a string (#175)

At least in the current implementation.
This commit is contained in:
Peter Law
2019-09-21 14:07:55 +01:00
committed by Nikita Sobolev
parent 29ac1c3017
commit c69090ec5b

View File

@@ -97,7 +97,7 @@ class Options(Generic[_M]):
def setup_proxy(self, target: Type[Model]) -> None: ...
def can_migrate(self, connection: Union[DatabaseWrapper, str]) -> bool: ...
@property
def verbose_name_raw(self) -> Any: ...
def verbose_name_raw(self) -> str: ...
@property
def swapped(self) -> Optional[str]: ...
@property