fix: add missing Header import in prompts.py
All checks were successful
Deploy Development / deploy (push) Successful in 45s
Build Test / lint-backend (push) Successful in 0s
Build Test / build-frontend (push) Successful in 14s

NameError: name 'Header' is not defined
Added Header to fastapi imports for export endpoints auth fix.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Lars 2026-03-29 21:25:33 +02:00
parent 650313347f
commit 6cdc159a94

View File

@ -8,7 +8,7 @@ import json
import uuid
import httpx
from typing import Optional
from fastapi import APIRouter, Depends, HTTPException, Query
from fastapi import APIRouter, Depends, HTTPException, Query, Header
from fastapi.responses import StreamingResponse
from db import get_db, get_cursor, r2d