File tree Expand file tree Collapse file tree 2 files changed +0
-4
lines changed
eng/tools/azure-sdk-tools/devtools_testutils Expand file tree Collapse file tree 2 files changed +0
-4
lines changed Original file line number Diff line number Diff line change 55# --------------------------------------------------------------------------
66import logging
77import urllib .parse as url_parse
8- from functools import wraps
98
109from azure .core .exceptions import ResourceNotFoundError
1110from azure .core .pipeline .policies import ContentDecodePolicy
@@ -99,7 +98,6 @@ async def test(...): ...
9998
10099def _make_proxy_decorator_async (transports ):
101100 def _decorator (test_func ):
102- @wraps (test_func )
103101 async def record_wrap (* args , ** kwargs ):
104102 # ---- your existing trimming/early-exit logic ----
105103 trimmed_kwargs = {k : v for k , v in kwargs .items ()}
Original file line number Diff line number Diff line change 77import logging
88import os
99from typing import TYPE_CHECKING , Optional
10- from functools import wraps
1110import urllib .parse as url_parse
1211
1312from azure .core .exceptions import HttpResponseError , ResourceNotFoundError
@@ -298,7 +297,6 @@ def test(...): ...
298297
299298def _make_proxy_decorator (transports ):
300299 def _decorator (test_func : "Callable" ):
301- @wraps (test_func )
302300 def record_wrap (* args , ** kwargs ):
303301 # ---- your existing trimming/early-exit logic ----
304302 trimmed_kwargs = {k : v for k , v in kwargs .items ()}
You can’t perform that action at this time.
0 commit comments