Skip to content

Commit

Permalink
Fix lint issue I001 in emitter.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jfperusse-bhvr authored Nov 12, 2024
1 parent 0f41c32 commit d69ea3e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions backend/chainlit/emitter.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
import uuid
from typing import Any, Dict, List, Literal, Optional, Union, cast

from literalai.helper import utc_now
from socketio.exceptions import TimeoutError

from chainlit.chat_context import chat_context
from chainlit.config import config
from chainlit.data import get_data_layer
Expand All @@ -16,12 +19,10 @@
FileDict,
FileReference,
MessagePayload,
OutputAudioChunk,
ThreadDict,
OutputAudioChunk
)
from chainlit.user import PersistedUser
from literalai.helper import utc_now
from socketio.exceptions import TimeoutError


class BaseChainlitEmitter:
Expand Down

0 comments on commit d69ea3e

Please sign in to comment.