Files
zulip/zerver/management/commands/checkconfig.py
Anders Kaseorg a50eb2e809 mypy: Enable new error explicit-override.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
2023-10-12 12:28:41 -07:00

15 lines
369 B
Python

from typing import Any
from django.core.management.base import BaseCommand
from typing_extensions import override
from zerver.lib.management import check_config
class Command(BaseCommand):
help = """Checks /etc/zulip/settings.py for common configuration issues."""
@override
def handle(self, *args: Any, **options: Any) -> None:
check_config()