Skip to content

Commit d255255

Browse files
committed
refactor: reorganize import statements for better readability
Signed-off-by: James Ding <[email protected]>
1 parent 74f09a3 commit d255255

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

src/fish_audio_sdk/__init__.py

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
from .apis import Session
22
from .exceptions import HttpCodeErr, WebSocketErr
3-
from .schemas import ASRRequest, TTSRequest, ReferenceAudio, Prosody, PaginatedResponse, ModelEntity, APICreditEntity, StartEvent, TextEvent, CloseEvent
3+
from .schemas import (
4+
ASRRequest,
5+
TTSRequest,
6+
ReferenceAudio,
7+
Prosody,
8+
PaginatedResponse,
9+
ModelEntity,
10+
APICreditEntity,
11+
StartEvent,
12+
TextEvent,
13+
CloseEvent,
14+
)
415
from .websocket import WebSocketSession, AsyncWebSocketSession
516

617
__all__ = [

0 commit comments

Comments
 (0)