feat(app-assets): add upload functionality and update proxy handling

This commit is contained in:
Harry
2026-01-25 15:34:53 +08:00
parent c035133353
commit 47835aaad9
7 changed files with 153 additions and 13 deletions

View File

@ -24,7 +24,7 @@ class TestTraceSpanDecorator:
"""Test that decorated function executes and returns correct value."""
@trace_span()
def test_func(x, y):
def test_func(x, y): # noqa: FURB118
return x + y
result = test_func(2, 3)