sorted imports

This commit is contained in:
gw3000 2023-06-19 23:09:42 +02:00
parent c108965792
commit 51e824f879
6 changed files with 21 additions and 11 deletions

View file

@ -1,10 +1,9 @@
from django.contrib.auth.decorators import login_required
from django.shortcuts import HttpResponse, redirect, render
from rescuer.models import Rescuer
from .forms import BirdForm
from .models import FallenBird
from rescuer.models import Rescuer
@login_required(login_url="account_login")