Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions branches/admin.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from django.contrib import admin

from .models import Branch


Expand Down
2 changes: 1 addition & 1 deletion branches/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@


class BranchesConfig(AppConfig):
name = 'branches'
name = "branches"
1 change: 1 addition & 0 deletions branches/models.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from pyexpat import model

from django.db import models

from IMX.validators import phone_number_validator


Expand Down
1 change: 1 addition & 0 deletions manage.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/usr/bin/env python
"""Django's command-line utility for administrative tasks."""

import os
import sys

Expand Down
Loading