Conversation
|
Claude finished @Saga4's task in 1m 55s —— View job PR Review Summary
Prek ChecksAll checks pass — ruff format and ruff lint both clean on changed files. Code ReviewThe change is simple and correct. Instead of hardcoding # Before
if file_path.suffix != ".py":
continue
# After
supported_extensions = set(get_supported_extensions())
...
if file_path.suffix not in supported_extensions:
continueThis makes Minor observation: The extensions in the registry are stored as lowercase ( Duplicate DetectionNo duplicates detected. The two other Test CoverageAll 12 existing Last updated: 2026-03-17 |
|
i think @mashraf-222 already opened it -> #1855 |
No description provided.