added 2 commits
February 2, 2024 16:05There is a deprecation warning for top level lint settings:
warning: The top-level linter settings are deprecated in favour of their
counterparts in the `lint` section. Please update the following options
in `ruff.toml`:
- 'ignore' -> 'lint.ignore'
- 'select' -> 'lint.select'
Move these under the lint section. Additionally, update the link to the
rules.
Signed-off-by: Nathan Chancellor <nathan@kernel.org>
Cleans up ruff warnings:
generator/generate_tuxsuite.py:74:24: SIM401 Use `build.get("ARCH", "x86_64")` instead of an `if` block
generator/generate_workflow.py:64:22: SIM401 Use `build.get("ARCH", "x86_64")` instead of an `if` block
generator/generate_workflow.py:216:25: SIM401 Use `build.get("ARCH", "x86_64")` instead of an `if` block
Signed-off-by: Nathan Chancellor <nathan@kernel.org>