Organise imports using isort --profile black
This commit is contained in:
parent
364ad42c05
commit
6d0fb174eb
10 changed files with 28 additions and 30 deletions
|
@ -1,21 +1,21 @@
|
|||
from django.shortcuts import render, get_object_or_404, redirect
|
||||
from django.http import HttpResponse
|
||||
from django.contrib.auth.decorators import login_required
|
||||
from django.contrib.auth import views as auth_views
|
||||
from django.contrib.auth.decorators import login_required
|
||||
from django.contrib.auth.mixins import LoginRequiredMixin
|
||||
from django.views.generic import ListView
|
||||
from django.core.paginator import Paginator
|
||||
from django.db import models
|
||||
from django.http import HttpResponse
|
||||
from django.shortcuts import get_object_or_404, redirect, render
|
||||
from django.views.generic import ListView
|
||||
|
||||
from .models import (
|
||||
Transaction,
|
||||
TransactionForm,
|
||||
Invoice,
|
||||
InvoiceForm,
|
||||
Category,
|
||||
CategoryForm,
|
||||
Invoice,
|
||||
InvoiceForm,
|
||||
Snapshot,
|
||||
SnapshotForm,
|
||||
Transaction,
|
||||
TransactionForm,
|
||||
)
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue