Skip to content

Commit dceb075

Browse files
authored
fix annotation for BaseCommand.handle() (#201)
1 parent 7e3f4bf commit dceb075

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

django-stubs/core/management/base.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ class BaseCommand:
6363
fail_level: int = ...,
6464
) -> None: ...
6565
def check_migrations(self) -> None: ...
66-
def handle(self, *args: Any, **options: Any) -> None: ...
66+
def handle(self, *args: Any, **options: Any) -> Optional[str]: ...
6767

6868
class AppCommand(BaseCommand):
6969
missing_args_message: str = ...

0 commit comments

Comments
 (0)