Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
angus-langchain committed Dec 20, 2024
1 parent 2ac7a35 commit 3b291c3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/langsmith/_internal/_compressed_runs.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import threading

try:
from zstandard import ZstdCompressor # type: ignore[import]
from zstandard import ZstdCompressor # type: ignore[import]

HAVE_ZSTD = True
except ImportError:
Expand Down
2 changes: 1 addition & 1 deletion python/langsmith/_internal/_operations.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from typing import Literal, Optional, Union, cast

try:
from zstandard import ZstdCompressionWriter # type: ignore[import]
from zstandard import ZstdCompressionWriter # type: ignore[import]
except ImportError:

class ZstdCompressionWriter: # type: ignore[no-redef]
Expand Down

0 comments on commit 3b291c3

Please sign in to comment.