-
Notifications
You must be signed in to change notification settings - Fork 828
Introduce LoraConfig #17229
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: gh/lucylq/132/base
Are you sure you want to change the base?
Introduce LoraConfig #17229
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -18,6 +18,8 @@ | |||||
| """ | ||||||
|
|
||||||
| import argparse | ||||||
| import json | ||||||
| import os | ||||||
|
||||||
| import os |
Copilot
AI
Feb 5, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove these duplicate imports. The modules json and os are already imported at the top of the file (lines 21-22), so importing them again inside this method is unnecessary.
| import json | |
| import os |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Import of 'json' is not used.