Skip to content
This repository was archived by the owner on Apr 7, 2026. It is now read-only.

Commit 38509ab

Browse files
committed
style: apply ruff format after ecosystem fixes
Signed-off-by: Michael Kantor <6068672+kantorcodes@users.noreply.github.com>
1 parent 3852aab commit 38509ab

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

src/codex_plugin_scanner/scanner.py

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -302,9 +302,13 @@ def _scan_mixed_packages(scan_root: Path, packages: list[NormalizedPackage], opt
302302

303303
for package in packages:
304304
package_root = package.root_path.resolve()
305-
if package.ecosystem == Ecosystem.CODEX and package.package_kind == "single-plugin" and any(
306-
package_root != marketplace_root and _is_path_within(package_root, marketplace_root)
307-
for marketplace_root in codex_marketplace_roots
305+
if (
306+
package.ecosystem == Ecosystem.CODEX
307+
and package.package_kind == "single-plugin"
308+
and any(
309+
package_root != marketplace_root and _is_path_within(package_root, marketplace_root)
310+
for marketplace_root in codex_marketplace_roots
311+
)
308312
):
309313
continue
310314
needs_rebase = package_root != scan_root_resolved

0 commit comments

Comments
 (0)