Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
hinthornw committed Sep 28, 2023
1 parent 193924b commit ba89c2b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions python/langsmith/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -3195,8 +3195,8 @@ def _evaluate_strings(self, prediction, reference=None, input=None, **kwargs) ->
)
""" # noqa: E501
try:
from langchain.smith import (
arun_on_dataset as _arun_on_dataset, # type: ignore[import]
from langchain.smith import ( # type: ignore[import]
arun_on_dataset as _arun_on_dataset,
)
except ImportError:
raise ImportError(
Expand Down Expand Up @@ -3332,8 +3332,8 @@ def _evaluate_strings(self, prediction, reference=None, input=None, **kwargs) ->
)
""" # noqa: E501
try:
from langchain.smith import (
run_on_dataset as _run_on_dataset, # type: ignore[import]
from langchain.smith import ( # type: ignore[import]
run_on_dataset as _run_on_dataset,
)
except ImportError:
raise ImportError(
Expand Down

0 comments on commit ba89c2b

Please sign in to comment.