fix annotation for BaseCommand.handle() (#201)

This commit is contained in:
Maxim Kurnikov
2019-10-05 21:36:41 +03:00
committed by GitHub
parent 7e3f4bfa02
commit dceb075152

View File

@@ -63,7 +63,7 @@ class BaseCommand:
fail_level: int = ...,
) -> 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):
missing_args_message: str = ...