You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CM-58331 fix AIIDEType enum default values in CLI commands
Typer converts enum defaults to strings using str(enum), which returns
'AIIDEType.CURSOR' instead of 'cursor'. This caused scan command to fail
with "Unsupported IDE: aiidetype.cursor".
Fixed by using AIIDEType.CURSOR.value instead of AIIDEType.CURSOR for
all CLI option defaults and ide_provider assignments.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
0 commit comments