From 1207bb0f797bdf96644368a832c1ad3965553b74 Mon Sep 17 00:00:00 2001 From: isaac hershenson Date: Tue, 17 Dec 2024 13:14:32 -0800 Subject: [PATCH] fmt --- python/langsmith/schemas.py | 4 +++- python/tests/integration_tests/test_client.py | 3 --- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/python/langsmith/schemas.py b/python/langsmith/schemas.py index 3958ac94b..e8d6dd34c 100644 --- a/python/langsmith/schemas.py +++ b/python/langsmith/schemas.py @@ -372,7 +372,9 @@ class RunBase(BaseModel): tags: Optional[List[str]] = None """Tags for categorizing or annotating the run.""" - attachments: Union[Attachments, Dict[str, AttachmentInfo]] = Field(default_factory=dict) + attachments: Union[Attachments, Dict[str, AttachmentInfo]] = Field( + default_factory=dict + ) """Attachments associated with the run. Each entry is a tuple of (mime_type, bytes).""" diff --git a/python/tests/integration_tests/test_client.py b/python/tests/integration_tests/test_client.py index f2d78d354..0b00f2b42 100644 --- a/python/tests/integration_tests/test_client.py +++ b/python/tests/integration_tests/test_client.py @@ -941,9 +941,6 @@ def test_multipart_ingest_create_with_attachments( langchain_client: Client, caplog: pytest.LogCaptureFixture ) -> None: _session = "__test_multipart_ingest_create_with_attachments" - langchain_client = Client( - api_key="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" - ) trace_a_id = uuid4() current_time = datetime.datetime.now(datetime.timezone.utc).strftime( "%Y%m%dT%H%M%S%fZ"