This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.core.management.base import BaseCommand | |
from django.db.models import fields | |
from django.db.models.fields import related | |
from django.apps import apps | |
class Command(BaseCommand): | |
help = """Generate factory-boy factories for the given app""" | |
def add_arguments(self, parser): |