Skip to content

Commit

Permalink
Added CommandParser to commands.__init__ (#1927)
Browse files Browse the repository at this point in the history
* Added CommandParser to commands.__init__

* Added handle_default_options import to management.__init__
  • Loading branch information
jamesbraza authored Feb 3, 2024
1 parent 1735d9e commit d283970
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions django-stubs/core/management/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ from typing import Any

from .base import BaseCommand as BaseCommand
from .base import CommandError as CommandError
from .base import CommandParser as CommandParser
from .base import handle_default_options as handle_default_options

def find_commands(management_dir: str) -> list[str]: ...
def load_command_class(app_name: str, name: str) -> BaseCommand: ...
Expand Down

0 comments on commit d283970

Please sign in to comment.