diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2023-01-19 18:35:56 +0000 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2023-01-19 18:35:56 +0000 |
commit | be9fcc522a0e8dd95167236b30deb936ca6a4721 (patch) | |
tree | e1f6c7a78e49b8ee28315b188148f35a02053996 /core/views/prospect.py | |
parent | 939d3970aad3d1e5cf0de4e7ed09bed78e0404bb (diff) | |
download | troggle-be9fcc522a0e8dd95167236b30deb936ca6a4721.tar.gz troggle-be9fcc522a0e8dd95167236b30deb936ca6a4721.tar.bz2 troggle-be9fcc522a0e8dd95167236b30deb936ca6a4721.zip |
sort imports using isort. tested.
Diffstat (limited to 'core/views/prospect.py')
-rw-r--r-- | core/views/prospect.py | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/core/views/prospect.py b/core/views/prospect.py index 4b30f5d..4021f5e 100644 --- a/core/views/prospect.py +++ b/core/views/prospect.py @@ -1,18 +1,21 @@ import os -import string import re +import string import urllib.parse -# from pathlib import Path from django.http import HttpResponse from django.shortcuts import render -# from django.core.exceptions import ObjectDoesNotExist, MultipleObjectsReturned import troggle.settings as settings -from troggle.core.models.caves import Entrance, Area, SurvexStation, Cave +from troggle.core.models.caves import Area, Cave, Entrance, SurvexStation from troggle.core.views.caves import caveKey from troggle.parsers.survex import MapLocations +# from pathlib import Path + +# from django.core.exceptions import ObjectDoesNotExist, MultipleObjectsReturned + + ''' Generates the prospecting guide document. Also produces the overlay of points on top of a prospecting_image map - to be deleted. |