From 033f34c0b8ccb51126be8a6e40a8f572b2ebaf87 Mon Sep 17 00:00:00 2001 From: Qubasa Date: Thu, 24 Jul 2025 18:28:18 +0700 Subject: [PATCH] ruff: Ignore accessed internal variable error as it is needed in tests quite often remove incorrect doc change --- docs/site/developer/contributing/debugging.md | 3 +-- pyproject.toml | 1 + 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/site/developer/contributing/debugging.md b/docs/site/developer/contributing/debugging.md index a26c3bd1e..a20ea8bca 100644 --- a/docs/site/developer/contributing/debugging.md +++ b/docs/site/developer/contributing/debugging.md @@ -85,8 +85,7 @@ export CLAN_DEBUG_COMMANDS=1 These options help you pinpoint the source and context of print messages and debug logs during development. -!!! Note - `CLAN_DEBUG_NIX_SELECTORS` and `CLAN_DEBUG_NIX_PREFETCH` will only print the command on a cache miss! + ## Analyzing Performance diff --git a/pyproject.toml b/pyproject.toml index 6abac8cd7..bf7088450 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -52,6 +52,7 @@ lint.ignore = [ "TRY301", "TRY300", "ANN401", + "SLF001", "RUF100", "TRY400", "E402",