diff --git a/django-stubs/core/management/commands/makemessages.pyi b/django-stubs/core/management/commands/makemessages.pyi index 8f8e5fd..45a35c5 100644 --- a/django-stubs/core/management/commands/makemessages.pyi +++ b/django-stubs/core/management/commands/makemessages.pyi @@ -1,4 +1,4 @@ -from typing import Any, Optional, Pattern, Type +from typing import Any, List, Optional, Pattern, Type from django.core.management.base import BaseCommand @@ -36,3 +36,7 @@ def write_pot_file(potfile: str, msgs: str) -> None: ... class Command(BaseCommand): translatable_file_class: Type[TranslatableFile] = ... build_file_class: Type[BuildFile] = ... + msgmerge_options: List[str] = ... + msguniq_options: List[str] = ... + msgattrib_options: List[str] = ... + xgettext_options: List[str] = ...