From 7013efffd52e500dbad5f299a8233d153a005342 Mon Sep 17 00:00:00 2001 From: Fradhyle <22760413+Fradhyle@users.noreply.github.com> Date: Wed, 19 Aug 2026 04:36:49 +0000 Subject: [PATCH] Format codes with Black and isort --- branches/admin.py | 1 + branches/apps.py | 2 +- branches/models.py | 1 + manage.py | 1 + 4 files changed, 4 insertions(+), 1 deletion(-) 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