Skip to content

Commit

Permalink
Fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
jverre committed Nov 23, 2024
1 parent 7ed9642 commit 8ef1796
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sdks/python/tests/unit/decorator/test_tracker_outputs.py
Original file line number Diff line number Diff line change
Expand Up @@ -936,6 +936,7 @@ def f(x):

assert_equal(EXPECTED_TRACE_TREE, fake_backend.trace_trees[0])


def test_track__span_and_trace_output_updated_via_opik_context(fake_backend):
@tracker.track
def f(x):
Expand Down Expand Up @@ -975,6 +976,7 @@ def f(x):

assert_equal(EXPECTED_TRACE_TREE, fake_backend.trace_trees[0])


def test_track__span_and_trace_updated_via_opik_context_with_feedback_scores__feedback_scores_are_also_logged(
fake_backend,
):
Expand Down Expand Up @@ -1027,7 +1029,6 @@ def f(x):
assert_equal(EXPECTED_TRACE_TREE, fake_backend.trace_trees[0])



def test_tracker__ignore_list_was_passed__ignored_inputs_are_not_logged(fake_backend):
@tracker.track(ignore_arguments=["a", "c", "e", "unknown_argument"])
def f(a, b, c=3, d=4, e=5):
Expand Down

0 comments on commit 8ef1796

Please sign in to comment.