mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-07 12:44:29 +08:00
fix annotation for BaseCommand.handle() (#201)
This commit is contained in:
@@ -63,7 +63,7 @@ class BaseCommand:
|
|||||||
fail_level: int = ...,
|
fail_level: int = ...,
|
||||||
) -> None: ...
|
) -> None: ...
|
||||||
def check_migrations(self) -> None: ...
|
def check_migrations(self) -> None: ...
|
||||||
def handle(self, *args: Any, **options: Any) -> None: ...
|
def handle(self, *args: Any, **options: Any) -> Optional[str]: ...
|
||||||
|
|
||||||
class AppCommand(BaseCommand):
|
class AppCommand(BaseCommand):
|
||||||
missing_args_message: str = ...
|
missing_args_message: str = ...
|
||||||
|
|||||||
Reference in New Issue
Block a user