fix: db/*.py imports — from db.connection, not just connection
Deploy contracts-flask / validate (push) Successful in 0s

This commit is contained in:
2026-07-15 11:40:59 +04:00
parent f9669755cd
commit aafb038921
6 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
"""Documents CRUD."""
from connection import query, execute, execute_returning
from db.connection import query, execute, execute_returning
def insert(filename, mime_type, original_bytes, status="uploaded", batch_id=None, zip_source=None, content_hash=None):