From 6dfc92bf153cef79344a19ad500bd7604e57e882 Mon Sep 17 00:00:00 2001 From: moanos Date: Tue, 29 Oct 2024 17:49:39 +0100 Subject: [PATCH] fix: Correct import --- src/fellchensammlung/management/commands/clean_locations.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fellchensammlung/management/commands/clean_locations.py b/src/fellchensammlung/management/commands/clean_locations.py index e551aa7..1556db6 100644 --- a/src/fellchensammlung/management/commands/clean_locations.py +++ b/src/fellchensammlung/management/commands/clean_locations.py @@ -1,6 +1,6 @@ from django.core.management import BaseCommand from fellchensammlung.models import AdoptionNotice, Location -from fellchensammlung.tools.geo import clean_locations +from fellchensammlung.tools.admin import clean_locations class Command(BaseCommand): @@ -15,4 +15,4 @@ class Command(BaseCommand): ) def handle(self, *args, **options): - clean_locations(quiet=False) \ No newline at end of file + clean_locations(quiet=False)