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/models/survex.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/models/survex.py')
-rw-r--r-- | core/models/survex.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/core/models/survex.py b/core/models/survex.py index cb5c26e..6b9a818 100644 --- a/core/models/survex.py +++ b/core/models/survex.py @@ -1,12 +1,13 @@ -import math +import math import os import re -from urllib.parse import urljoin from pathlib import Path +from urllib.parse import urljoin from django.conf import settings from django.db import models from django.urls import reverse + from troggle.core.utils import height_from_utm, throw # from troggle.core.models.troggle import DataIssue # circular import. Hmm |