🚨 Update pyproject.toml to fix type checking ignorer for examples/ (#31)

This commit is contained in:
Paillat
2025-08-31 12:43:37 +02:00
committed by GitHub
parent e886d494d9
commit 2318307378

View File

@@ -98,7 +98,7 @@ reportUnusedCallResult = false
reportAny = false
executionEnvironments = [
{ root = "src/pycord_rest/_version.py", reportDeprecated = false },
{ root = "examples", reportExplicitAny = false, reportUnknownMemberType = false, reportUnusedParameter = false, reportImplicitOverride = false }
{ root = "examples", reportExplicitAny = false, reportUnknownMemberType = false, reportUnusedParameter = false, reportImplicitOverride = false, reportAttributeAccessIssue = false, reportUnknownVariableType = false },
]
[tool.ruff]