From cf5c4a4a18898f7dd032d91b2f460f6493201976 Mon Sep 17 00:00:00 2001 From: Sven Augustin Date: Wed, 20 May 2026 23:47:29 +0200 Subject: [PATCH] moved small utilities into utils sub-folder --- stand/api.py | 2 +- stand/state.py | 4 ++-- stand/table.py | 2 +- stand/{ => utils}/annotations.py | 0 stand/{ => utils}/config.py | 0 stand/{ => utils}/registry.py | 0 6 files changed, 4 insertions(+), 4 deletions(-) rename stand/{ => utils}/annotations.py (100%) rename stand/{ => utils}/config.py (100%) rename stand/{ => utils}/registry.py (100%) diff --git a/stand/api.py b/stand/api.py index 6adbc12..0690f8a 100644 --- a/stand/api.py +++ b/stand/api.py @@ -4,7 +4,7 @@ from typing import Any import pandas as pd from fastapi import APIRouter -from annotations import PGroup +from utils.annotations import PGroup from state import grids, lib diff --git a/stand/state.py b/stand/state.py index d07af00..ec3ff7f 100644 --- a/stand/state.py +++ b/stand/state.py @@ -2,8 +2,8 @@ from collections import defaultdict import arcticdb as adb -from config import Config -from registry import Registry +from utils.config import Config +from utils.registry import Registry uri = "lmdb://adb" diff --git a/stand/table.py b/stand/table.py index 63ffdd8..1597bbc 100644 --- a/stand/table.py +++ b/stand/table.py @@ -6,7 +6,7 @@ import pandas as pd from nicegui import APIRouter, app, ui from aggridx import aggridx -from annotations import PGroup +from utils.annotations import PGroup from state import grids, lib diff --git a/stand/annotations.py b/stand/utils/annotations.py similarity index 100% rename from stand/annotations.py rename to stand/utils/annotations.py diff --git a/stand/config.py b/stand/utils/config.py similarity index 100% rename from stand/config.py rename to stand/utils/config.py diff --git a/stand/registry.py b/stand/utils/registry.py similarity index 100% rename from stand/registry.py rename to stand/utils/registry.py