"""Django management command""" from django.core.management import BaseCommand, CommandError # pylint: disable=missing-class-docstring, missing-function-docstring class Command(BaseCommand): help = "Foos all the Bars" def add_arguments(self, parser): pass def handle(self, *args, **options): pass