fix: add missing List import to blockchain-explorer main.py
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user