refactor: Remove unused import

This commit is contained in:
moanos [he/him] 2024-10-29 17:49:54 +01:00
parent 6dfc92bf15
commit 4fb92d8215

View File

@ -1,5 +1,3 @@
import datetime
from django import forms
from .models import AdoptionNotice, Animal, Image, ReportAdoptionNotice, ReportComment, ModerationAction, User, Species, \
@ -175,5 +173,5 @@ def _get_distances():
class AdoptionNoticeSearchForm(forms.Form):
postcode = forms.CharField(max_length=20, label=_("Postleitzahl"))
location = forms.CharField(max_length=20, label=_("Stadt"))
max_distance = forms.ChoiceField(choices=_get_distances, label=_("Max. Distanz"))