Removed duplicate imports
- traceback import twice in server.py - tempfile imported twice in tts.py
This commit is contained in:
parent
f9cc6bb665
commit
eb64a27e80
|
@ -7,7 +7,6 @@ import ast
|
|||
import json
|
||||
import queue
|
||||
import os
|
||||
import traceback
|
||||
import datetime
|
||||
from .utils.bytes_to_wav import bytes_to_wav
|
||||
import re
|
||||
|
@ -429,4 +428,4 @@ async def main(server_host, server_port, llm_service, model, llm_supports_vision
|
|||
|
||||
# Run the FastAPI app
|
||||
if __name__ == "__main__":
|
||||
asyncio.run(main())
|
||||
asyncio.run(main())
|
||||
|
|
|
@ -2,7 +2,6 @@ import ffmpeg
|
|||
import tempfile
|
||||
import os
|
||||
import subprocess
|
||||
import tempfile
|
||||
import urllib.request
|
||||
import tarfile
|
||||
|
||||
|
|
Loading…
Reference in New Issue