### How do you use Sentry? Sentry Saas (sentry.io) ### Version all of them ### Steps to Reproduce ``` >>> def f(a, b, c): ... pass ... >>> import inspect >>> inspect.getcallargs(f, 1, 2, 3) {'a': 1, 'b': 2, 'c': 3} >>> >>> import sentry_sdk >>> @sentry_sdk.tracing.trace ... def f(a, b, c): ... passs ... >>> inspect.getcallargs(f, 1, 2, 3) {'args': (1, 2, 3), 'kwargs': {}} >>> ``` ### Expected Result Same function signature after applying the decorator. ### Actual Result Changed signature.