diff --git a/src/c3nav/mapdata/management/commands/clearmapcache.py b/src/c3nav/mapdata/management/commands/clearmapcache.py deleted file mode 100644 index b070a91b..00000000 --- a/src/c3nav/mapdata/management/commands/clearmapcache.py +++ /dev/null @@ -1,11 +0,0 @@ -from django.core.management.base import BaseCommand - -from c3nav.mapdata.lastupdate import set_last_mapdata_update - - -class Command(BaseCommand): - help = 'Clear the map cache (set last updated to now)' - - def handle(self, *args, **options): - with set_last_mapdata_update(): - pass