Skip to content

Commit 6ab646e

Browse files
committed
test: reverting global Ruff exclusionn for PLR0913 and replacing with a local one for this single test
1 parent 8edff01 commit 6ab646e

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,6 @@ target-version = "py310" # Minimum Python version
175175

176176
[tool.ruff.lint]
177177
ignore = [
178-
"PLR0913", # Too many arguments in function definition
179178
"COM812", # Trailing comma missing.
180179
"FBT001", # Boolean positional arg in function definition
181180
"FBT002", # Boolean default value in function definition

tests/client/test_card_resolver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ async def test_get_agent_card_validation_error(
284284
)
285285

286286
@pytest.mark.asyncio
287-
async def test_get_agent_card_logs_success(
287+
async def test_get_agent_card_logs_success( # noqa: PLR0913
288288
self,
289289
base_url,
290290
resolver,

0 commit comments

Comments
 (0)