This commit is contained in:
fuzhongyun 2026-03-27 18:35:32 +08:00
parent 4d468c20c1
commit c1bc9f76a9
1 changed files with 1 additions and 2 deletions

View File

@ -40,7 +40,7 @@ app = FastAPI(
)
async def get_fingerprint() -> Optional[str]:
async def get_fingerprint():
page = await browser.new_page()
try:
fingerprint_future = asyncio.Future()
@ -91,4 +91,3 @@ async def get_fingerprint_endpoint():
if __name__ == "__main__":
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=8000)