Commit fd0af120

Robert Craigie <robert@craigie.dev>
2025-08-11 23:20:56
chore(internal): fix formatting
1 parent 266edeb
Changed files (1)
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],