diff --git a/branches/admin.py b/branches/admin.py index 8ca2858..ea2ec31 100644 --- a/branches/admin.py +++ b/branches/admin.py @@ -1,4 +1,5 @@ from django.contrib import admin + from .models import Branch diff --git a/branches/apps.py b/branches/apps.py index 58d1b63..3ab626a 100644 --- a/branches/apps.py +++ b/branches/apps.py @@ -2,4 +2,4 @@ class BranchesConfig(AppConfig): - name = 'branches' + name = "branches" diff --git a/branches/models.py b/branches/models.py index 94db773..b5f8307 100644 --- a/branches/models.py +++ b/branches/models.py @@ -1,6 +1,7 @@ from pyexpat import model from django.db import models + from IMX.validators import phone_number_validator diff --git a/manage.py b/manage.py index 394e935..45defc7 100644 --- a/manage.py +++ b/manage.py @@ -1,5 +1,6 @@ #!/usr/bin/env python """Django's command-line utility for administrative tasks.""" + import os import sys