This is an automated email from the ASF dual-hosted git repository. gcruz pushed a commit to branch gc/8581 in repository https://gitbox.apache.org/repos/asf/allura.git
commit 200979fb9a34f740e571d873b3aa0f8f5e2274b7 Author: Guillermo Cruz <guillermo.c...@slashdotmedia.com> AuthorDate: Fri Jul 11 13:15:17 2025 -0600 added PLC0415 to the list of ignored ruff rules --- ruff.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/ruff.toml b/ruff.toml index e5356368c..7f1a38886 100644 --- a/ruff.toml +++ b/ruff.toml @@ -66,6 +66,7 @@ lint.ignore = [ 'S607', # partial path 'PLW2901', # loop var overwritten 'SIM103', #Return the condition `bool(raised and isinstance(raised, HTTPFound))` directly + 'PLC0415', # ignore imports outside top level scope ] [lint.per-file-ignores]