-
Notifications
You must be signed in to change notification settings - Fork 27
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
🐛 Fix pylint tests #7056
base: master
Are you sure you want to change the base?
🐛 Fix pylint tests #7056
Conversation
Quality Gate passedIssues Measures |
@@ -97,7 +97,7 @@ def transaction( | |||
) -> PaymentsTransactionsDB: | |||
kwargs = { | |||
k: successful_transaction[k] | |||
for k in PaymentsTransactionsDB.model_fields | |||
for k in PaymentsTransactionsDB.model_fields.keys() |
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.
MINOR: this also works without .keys()
.
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.
thanks!
What do these changes do?
docker
python package and fix pylint complaints after pylint upgradeRelated issue/s
How to test
Dev-ops checklist