Skip to content

Commit

Permalink
Fixed linting.
Browse files Browse the repository at this point in the history
  • Loading branch information
3coins committed Sep 19, 2024
1 parent f869845 commit aa69b35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/core/tests/unit_tests/tracers/test_langchain.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def new_persist_run_single(run: Run) -> None:
def test_tracer_with_run_tree_parent() -> None:
mock_session = unittest.mock.MagicMock()
client = Client(session=mock_session, api_key="test")
parent = RunTree(name="parent", inputs={"input": "foo"}, client=client)
parent = RunTree(name="parent", inputs={"input": "foo"}, _client=client)
run_id = uuid.uuid4()
tracer = LangChainTracer(client=client)
tracer.order_map[parent.id] = (parent.trace_id, parent.dotted_order)
Expand Down

0 comments on commit aa69b35

Please sign in to comment.