-
Notifications
You must be signed in to change notification settings - Fork 14
Refactoring for Grace Framework migration to SQLModel #147
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
Conversation
# Conflicts: # setup.py
f47cb55 to
b7a4545
Compare
c5dac77 to
ce90a1f
Compare
2fb3d8c to
6c5a654
Compare
6b30ad1 to
d31d090
Compare
chrisdedman
left a comment
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.
Other than the fromatting nit, everything looks good. I don't have any breaking changes after running it locally.
| import base64 | ||
| import json | ||
| import zlib | ||
| import requests | ||
| from logging import info, critical | ||
| from logging import critical, info | ||
|
|
||
| import requests |
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.
nit: Not quit sure why Ruff did ordered them like this. Can you manually move import requests one line and add a blank line between from .. and import ..
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.
Yeah, the formatting will change anyway with #146 which should be properly configured.
This PR contains a overall refactor of grace to reflect the changes of Grace Framework's new ORM and Query System.
Code-Society-Lab/grace-framework#10