Skip to content

Commit 1536e27

Browse files
committed
fix: ruff error on unit test
1 parent 926d6f2 commit 1536e27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/server/lowlevel/test_func_inspection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ async def request_static_method(request: types.ListPromptsRequest):
6060
pass
6161

6262
@staticmethod
63-
async def request_static_method_bad_arg_name(self: types.ListPromptsRequest): # pyright: ignore[reportSelfClsParameterName]
63+
async def request_static_method_bad_arg_name(self: types.ListPromptsRequest): # pyright: ignore[reportSelfClsParameterName] # noqa: PLW0211
6464
"""Static method with request parameter, but the request argument is named self"""
6565
pass
6666

0 commit comments

Comments
 (0)