## Bug Report Parsing input string parameter as integer instead. It should be an integer not string. Please answer these questions before submitting your issue. Thanks! ### 1. Minimal reproduce step (Required) ``` imageSHA = option("imageSHA", type="str") imageSHA2 = imageSHA + '2' ``` ### 2. What did you expect to see? (Required) ``` kcl run --argument imageSHA="12e1" imageSHA: '12e1' imageSHA2: '12e12' ``` ### 3. What did you see instead ``` kcl run --argument imageSHA="12e1" imageSHA: '120' imageSHA2: '1202' ``` ### 4. What is your KCL components version? (Required) 0.9.8 [Slack Thread](https://cloud-native.slack.com/archives/C05TC96NWN8/p1747717448544279 )