Skip to content

Commit

Permalink
ignore type UNSET
Browse files Browse the repository at this point in the history
  • Loading branch information
tcapelle committed Aug 14, 2024
1 parent 16d5716 commit c030c9e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions weave/trace/op.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,10 @@
ANTHROPIC_NOT_GIVEN = None

try:
from mistralai.types.basemodel import UNSET
# https://github.com/search?q=repo:mistralai/client-python%20Final&type=code
from mistralai.types.basemodel import UNSET # type: ignore

MISTRAL_NOT_GIVEN = UNSET
MISTRAL_NOT_GIVEN = UNSET # type: ignore
except ImportError:
MISTRAL_NOT_GIVEN = None

Expand Down

0 comments on commit c030c9e

Please sign in to comment.