2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2025-12-17 07:47:20 +00:00

import order fixed by ruff

This commit is contained in:
2024-12-15 18:54:47 +00:00
parent eb74940ca8
commit 30760654b7
34 changed files with 83 additions and 112 deletions

View File

@@ -1,18 +1,17 @@
import os
import os
import re
from collections import defaultdict
from datetime import datetime, timezone
from pathlib import Path
from django.db import models, DataError
from django.db import DataError, models
from django.template import loader
import settings
from troggle.core.models.logbooks import QM
from troggle.core.models.survex import SurvexStation, utmToLatLng
from troggle.core.models.troggle import DataIssue, TroggleModel
from troggle.core.utils import TROG, writetrogglefile, parse_aliases
from troggle.core.utils import TROG, parse_aliases, writetrogglefile
# Use the TROG global object to cache the cave lookup list. No good for multi-user.., or even multi-page. Pointless in fact.
Gcavelookup = TROG["caves"]["gcavelookup"]