Skip to content

Commit

Permalink
import sorting
Browse files Browse the repository at this point in the history
  • Loading branch information
anakin87 committed Dec 13, 2024
1 parent 873ae4f commit fe6c4c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion haystack/dataclasses/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from haystack.dataclasses.answer import Answer, ExtractedAnswer, GeneratedAnswer
from haystack.dataclasses.byte_stream import ByteStream
from haystack.dataclasses.chat_message import ChatMessage, ChatRole, ToolCall, ToolCallResult, TextContent
from haystack.dataclasses.chat_message import ChatMessage, ChatRole, TextContent, ToolCall, ToolCallResult
from haystack.dataclasses.document import Document
from haystack.dataclasses.sparse_embedding import SparseEmbedding
from haystack.dataclasses.streaming_chunk import StreamingChunk
Expand Down
2 changes: 1 addition & 1 deletion haystack/dataclasses/chat_message.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import warnings
from dataclasses import asdict, dataclass, field
from enum import Enum
from typing import Any, Dict, Optional, Union, List, Sequence
from typing import Any, Dict, List, Optional, Sequence, Union


class ChatRole(str, Enum):
Expand Down

0 comments on commit fe6c4c8

Please sign in to comment.