diff options
author | Mats Wichmann <mats@linux.com> | 2024-06-29 15:29:08 (GMT) |
---|---|---|
committer | Mats Wichmann <mats@linux.com> | 2024-06-29 17:05:50 (GMT) |
commit | 6baf4d424499b275e14a8b4cda1b1b0844b10a77 (patch) | |
tree | a8c1890fedc3fc5f467152ea4192ab61e0345cb1 /pyproject.toml | |
parent | 268a942b8b2d7a2715991a9fbfe0dceec1665a7e (diff) | |
download | SCons-6baf4d424499b275e14a8b4cda1b1b0844b10a77.zip SCons-6baf4d424499b275e14a8b4cda1b1b0844b10a77.tar.gz SCons-6baf4d424499b275e14a8b4cda1b1b0844b10a77.tar.bz2 |
Minor cleanups in Variables
Continuing the maintenance pass on Variables, these are some minor
tweaks for a few checker niggles and fixing up a couple of docstrings.
There is no functional change.
Signed-off-by: Mats Wichmann <mats@linux.com>
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml index 0cdbc7b..60bc9e6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -88,7 +88,10 @@ quote-style = "preserve" # Equivalent to black's "skip-string-normalization" [tool.ruff.lint.per-file-ignores] "SCons/Util/__init__.py" = [ - "F401", # Module imported but unused + "F401", # Module imported but unused +] +"SCons/Variables/__init__.py" = [ + "F401", # Symbol imported but unused ] [tool.mypy] |