-
Notifications
You must be signed in to change notification settings - Fork 14.3k
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
Make filters param optional and fix typing #44226
Conversation
2b3838f
to
697edf0
Compare
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.
Overall looks good besides changing the var name in list comprehension to x
, but I think it's more like a personal taste 🤔
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.
Nice, just one question
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.
No major comments, just found the newer version with for x in event_logs
or for x in assets
etc less readable.
68c3458
to
91190fd
Compare
Given that sometimes we don't want to apply any filters, it makes sense to make the param optional. I also fix the typing on `paginated_select`.
91190fd
to
a52a6d4
Compare
Given that sometimes we don't want to apply any filters, it makes sense to make the param optional. I also fix the typing on
paginated_select
.