Refactor import statements across multiple modules to use relative paths for better organization and maintainability.

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
2026-04-27 21:12:10 +02:00
parent ae7727c01a
commit 2c6fdc03a8
15 changed files with 35 additions and 35 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
"""Integration tests for auth endpoints using in-memory DuckDB."""
from backend.app.main import app
from backend.app import db as db_module
from app.main import app
from app import db as db_module
from httpx import AsyncClient, ASGITransport
import os
import pytest