Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: fixed variable name mismatch in for loop (#408)
## 📝 Summary Fixed the variable name mismatch between the `for` loop and the `print` statement, where `ms` was used in the loop but `msg` was referenced in the print statement. This led to a `NameError: name 'msg' is not defined`. ## 💡 Motivation and Context This fix resolves the error caused by the variable name inconsistency, ensuring that the code runs without any issues. ## ✅ I have completed the following steps: * [x] Run `make lint` * [x] Run `make test` * [ ] Added tests (if applicable)
- Loading branch information