-
Notifications
You must be signed in to change notification settings - Fork 20
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
Style: aligned black with ruff settings, added pyupgrade #61
Conversation
The issue that |
This PR is ready to be merged. The only question I have is if ruff/pyupgrade should be forbidden to run on the auto-generated client code. |
@@ -22,8 +22,8 @@ | |||
@app.async_command() | |||
async def login( | |||
vo: str, | |||
group: Optional[str] = None, | |||
property: Optional[list[str]] = Option( | |||
group: Optional[str] = None, # noqa: UP007 |
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.
Shall we do this at the file level with a comment explaining why?
# ruff: noqa: F841
I think we definitely shouldn't, we just risk introducing bugs. |
Superseeded by #74 |
No description provided.