Skip to content

Commit f2c87b0

Browse files
committed
revise formatting
Signed-off-by: xtzhang1122 <[email protected]>
1 parent e7e21ea commit f2c87b0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: src/core/routes/test.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
from typing import List, AsyncGenerator
22
from fastapi import APIRouter
33
from pydantic import BaseModel
4-
import uuid, asyncio
4+
import uuid
5+
import asyncio
56
from fastapi.responses import StreamingResponse
67
import re
78

@@ -35,7 +36,6 @@ class RequestConversation(BaseModel):
3536

3637

3738
def normalize_question(question: str) -> str:
38-
# Convert to lowercase and strip punctuation
3939
question = question.rstrip()
4040
return re.sub(r'[^\w\s]', '', question.lower())
4141

0 commit comments

Comments
 (0)