Import sorting

This commit is contained in:
Edgar P. Burkhart 2022-12-29 22:18:14 +01:00
parent 0d9ff3b771
commit e438cfd78a
Signed by: edpibu
GPG key ID: 9833D3C5A25BD227
2 changed files with 3 additions and 21 deletions

View file

@ -1,12 +1,6 @@
from django.forms import ModelForm
from .models import (
Account,
Category,
Invoice,
Snapshot,
Transaction,
)
from .models import Account, Category, Invoice, Snapshot, Transaction
class NummiForm(ModelForm):

View file

@ -18,20 +18,8 @@ from django.views.generic import (
)
from django.views.generic.edit import ProcessFormView
from .models import (
Account,
Category,
Invoice,
Snapshot,
Transaction,
)
from .forms import (
AccountForm,
CategoryForm,
InvoiceForm,
SnapshotForm,
TransactionForm,
)
from .forms import AccountForm, CategoryForm, InvoiceForm, SnapshotForm, TransactionForm
from .models import Account, Category, Invoice, Snapshot, Transaction
class IndexView(LoginRequiredMixin, TemplateView):