Skip to content

Commit

Permalink
fix annotation for BaseCommand.handle() (#201)
Browse files Browse the repository at this point in the history
  • Loading branch information
mkurnikov authored Oct 5, 2019
1 parent 7e3f4bf commit dceb075
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django-stubs/core/management/base.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -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 = ...
Expand Down

0 comments on commit dceb075

Please sign in to comment.