From 5471e88b566fac494f056caf11dc42a92ebbdd9f Mon Sep 17 00:00:00 2001 From: isaac hershenson Date: Mon, 9 Dec 2024 15:17:37 -0800 Subject: [PATCH] fmt --- python/langsmith/schemas.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/python/langsmith/schemas.py b/python/langsmith/schemas.py index 5b226a830..30a65a018 100644 --- a/python/langsmith/schemas.py +++ b/python/langsmith/schemas.py @@ -5,7 +5,6 @@ from datetime import datetime, timedelta, timezone from decimal import Decimal from enum import Enum -from pathlib import Path from typing import ( Any, Dict, @@ -64,7 +63,7 @@ def my_function(bar: int, my_val: Attachment): data: bytes -Attachments = Dict[str, Union[Tuple[str, bytes], Attachment, Tuple[str, Path]]] +Attachments = Dict[str, Union[Tuple[str, bytes], Attachment]] """Attachments associated with the run. Each entry is a tuple of (mime_type, bytes), or (mime_type, file_path)"""