1
0
mirror of https://github.com/django/django.git synced 2025-01-02 14:35:59 +00:00
django/tests/user_commands/management/commands/specific_system_checks.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
233 B
Python
Raw Normal View History

from django.core.checks import Tags
from django.core.management.base import BaseCommand
class Command(BaseCommand):
requires_system_checks = [Tags.staticfiles, Tags.models]
def handle(self, *args, **options):
pass