Commit fd0af120
Changed files (1)
src
openai
types
src/openai/types/chat/chat_completion_message_tool_call.py
@@ -7,7 +7,7 @@ from ..._utils import PropertyInfo
from .chat_completion_message_custom_tool_call import ChatCompletionMessageCustomToolCall
from .chat_completion_message_function_tool_call import Function as Function, ChatCompletionMessageFunctionToolCall
-__all__ = [ "Function", "ChatCompletionMessageToolCallUnion"]
+__all__ = ["Function", "ChatCompletionMessageToolCallUnion"]
ChatCompletionMessageToolCallUnion: TypeAlias = Annotated[
Union[ChatCompletionMessageFunctionToolCall, ChatCompletionMessageCustomToolCall],