fix: add missing List import to blockchain-explorer main.py
Some checks failed
Integration Tests / test-service-integration (push) Successful in 2m45s
Python Tests / test-python (push) Failing after 27s
Security Scanning / security-scan (push) Has started running

The blockchain-explorer was failing with NameError because it used List[str]
but only imported Optional from typing. Added List to the import.
This commit is contained in:
aitbc
2026-04-25 08:06:11 +02:00
parent f947fa12bc
commit 7871b30a40

View File

@@ -10,7 +10,7 @@ import csv
import io
import re
from datetime import datetime, timedelta
from typing import Optional
from typing import Optional, List
import os
from fastapi import FastAPI, HTTPException, Query