mirror of https://github.com/langgenius/dify.git
fix(tests): remove unnecessary noqa directive from test function
This commit is contained in:
parent
af17e20f99
commit
87dba2765b
|
|
@ -24,7 +24,7 @@ class TestTraceSpanDecorator:
|
|||
"""Test that decorated function executes and returns correct value."""
|
||||
|
||||
@trace_span()
|
||||
def test_func(x, y): # noqa: FURB118
|
||||
def test_func(x, y):
|
||||
return x + y
|
||||
|
||||
result = test_func(2, 3)
|
||||
|
|
|
|||
Loading…
Reference in New Issue