Browse Source

scripts: west_commands: export: Sorted imports

Sort imports with ruff.

Signed-off-by: Pieter De Gendt <pieter.degendt@basalte.be>
pull/90432/head
Pieter De Gendt 2 months ago committed by Benjamin Cabé
parent
commit
8e2e319925
  1. 3
      .ruff-excludes.toml
  2. 1
      scripts/west_commands/export.py

3
.ruff-excludes.toml

@ -1090,9 +1090,6 @@ @@ -1090,9 +1090,6 @@
"I001", # https://docs.astral.sh/ruff/rules/unsorted-imports
"UP008", # https://docs.astral.sh/ruff/rules/super-call-with-parameters
]
"./scripts/west_commands/export.py" = [
"I001", # https://docs.astral.sh/ruff/rules/unsorted-imports
]
"./scripts/west_commands/fetchers/__init__.py" = [
"UP032", # https://docs.astral.sh/ruff/rules/f-string
]

1
scripts/west_commands/export.py

@ -6,7 +6,6 @@ import argparse @@ -6,7 +6,6 @@ import argparse
from pathlib import Path
from west.commands import WestCommand
from zcmake import run_cmake
EXPORT_DESCRIPTION = '''\

Loading…
Cancel
Save