Fix Flake8 (add space after import)

This commit is contained in:
Matthew Foster Walsh 2024-02-20 14:35:42 -05:00
parent f3997dc48c
commit 2701690165
No known key found for this signature in database

View File

@ -6,6 +6,7 @@ from factory.django import DjangoModelFactory
from {{ cookiecutter.project_slug }}.users.models import User from {{ cookiecutter.project_slug }}.users.models import User
class UserFactory(DjangoModelFactory): class UserFactory(DjangoModelFactory):
{%- if cookiecutter.username_type == "username" %} {%- if cookiecutter.username_type == "username" %}
username = Faker("user_name") username = Faker("user_name")