Commit Graph

7 Commits

Author SHA1 Message Date
7123841fb4 style: apply ruff autoformat 2025-12-17 16:37:21 +01:00
324f9bebf4 fix(lint): resolve Ruff E402 import-order violations
Move all module-level imports to the top of affected files and remove
late imports after sys.path manipulation or runtime code.

Also normalize test imports to use package paths instead of ad-hoc
sys.path hacks, aligning tests with the new layered architecture.

No functional changes intended.

https://chatgpt.com/share/6942c6af-bd10-800f-886a-0ed8731675ee
2025-12-17 16:05:15 +01:00
176c8799ce lint(ruff): fix E402 and related import issues
- Fix E402 by removing sys.path hacks and ensuring imports are at module top level
- Replace ad-hoc imports with proper package imports (filter_plugins, lookup_plugins, module_utils, cli)
- Make lookup plugins importable via package paths (e.g. lookup_plugins.application_gid)
- Clean up test imports to rely on installed package layout instead of sys.path manipulation
- Partially fix F821 caused by missing/invalid imports

This establishes a consistent, ruff-compliant import architecture across CLI, filters, plugins, and tests.
2025-12-17 14:36:29 +01:00
3eb8b54a1a Restructured CLI meta commands 2025-07-12 17:05:00 +02:00
60ab31c623 Optimized inventory validation 2025-07-11 02:03:33 +02:00
d43fdc63ea Optimized inventory validator for wrong groups 2025-07-11 01:34:44 +02:00
c160c58a5c Restructured CLI logic 2025-07-10 21:26:44 +02:00