Commit 2843a64c

Robert Craigie <robert@craigie.dev>
2025-08-30 02:45:59
chore(internal): fix formatting
1 parent 845466f
Changed files (1)
tests
lib
tests/lib/responses/test_responses.py
@@ -51,6 +51,7 @@ def test_stream_method_definition_in_sync(sync: bool, client: OpenAI, async_clie
         exclude_params={"stream", "tools"},
     )
 
+
 @pytest.mark.parametrize("sync", [True, False], ids=["sync", "async"])
 def test_parse_method_definition_in_sync(sync: bool, client: OpenAI, async_client: AsyncOpenAI) -> None:
     checking_client: OpenAI | AsyncOpenAI = client if sync else async_client