diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2024-12-15 18:54:47 +0000 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2024-12-15 18:54:47 +0000 |
commit | 30760654b7a3d7a394028fdf357d6f257def1fd5 (patch) | |
tree | 0dc128d9896b1f113e2b11c8936ff88531c9b762 /core/views/scans.py | |
parent | eb74940ca81a6e900dec2b7c8df00245c6bb9a71 (diff) | |
download | troggle-30760654b7a3d7a394028fdf357d6f257def1fd5.tar.gz troggle-30760654b7a3d7a394028fdf357d6f257def1fd5.tar.bz2 troggle-30760654b7a3d7a394028fdf357d6f257def1fd5.zip |
import order fixed by ruff
Diffstat (limited to 'core/views/scans.py')
-rw-r--r-- | core/views/scans.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/core/views/scans.py b/core/views/scans.py index 1d86d18..62251de 100644 --- a/core/views/scans.py +++ b/core/views/scans.py @@ -6,17 +6,15 @@ from django.conf import settings from django.http import HttpResponse from django.shortcuts import render - from troggle.core.models.caves import GetCaveLookup from troggle.core.models.survex import SingleScan, SurvexBlock, SurvexPersonRole -from troggle.core.models.wallets import Wallet from troggle.core.models.troggle import DataIssue, Expedition, Person, PersonExpedition +from troggle.core.models.wallets import Wallet +from troggle.core.utils import DatabaseResetOngoing, current_expo from troggle.core.views.expo import getmimetype from troggle.parsers.caves import add_cave_to_pending_list from troggle.parsers.people import GetPersonExpeditionNameLookup from troggle.parsers.survex import set_walletdate -from troggle.core.utils import current_expo, DatabaseResetOngoing - """ Note that caveifywallet() etc do NOT save the object to the db. They are ephemeral, just for the page rendering of the |