We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8edff01 commit 6ab646eCopy full SHA for 6ab646e
pyproject.toml
@@ -175,7 +175,6 @@ target-version = "py310" # Minimum Python version
175
176
[tool.ruff.lint]
177
ignore = [
178
- "PLR0913", # Too many arguments in function definition
179
"COM812", # Trailing comma missing.
180
"FBT001", # Boolean positional arg in function definition
181
"FBT002", # Boolean default value in function definition
tests/client/test_card_resolver.py
@@ -284,7 +284,7 @@ async def test_get_agent_card_validation_error(
284
)
285
286
@pytest.mark.asyncio
287
- async def test_get_agent_card_logs_success(
+ async def test_get_agent_card_logs_success( # noqa: PLR0913
288
self,
289
base_url,
290
resolver,
0 commit comments