2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2025-12-17 08:27:15 +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,20 +1,17 @@
import re
from django.db.models import Q
from django.shortcuts import render
from django.shortcuts import redirect, render
from django.views.generic.list import ListView
from django.shortcuts import render, redirect
import troggle.settings as settings
from troggle.core.models.logbooks import LogbookEntry, PersonLogEntry, QM, writelogbook
from troggle.core.models.logbooks import QM, LogbookEntry, PersonLogEntry, writelogbook
from troggle.core.models.survex import SurvexBlock, SurvexFile
from troggle.core.models.troggle import Expedition, Person
from troggle.core.models.wallets import Wallet
from troggle.core.utils import TROG, current_expo
from troggle.parsers.imports import import_logbook
"""These views are for logbook items when they appear in an 'expedition' page
and for persons: their individual pages and their perseonexpedition pages.