blob: 5551b2ab36e1b39cc986f0cb0632f0e1f077c419 (
plain)
1
2
3
4
5
6
7
8
9
|
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
|