-
Notifications
You must be signed in to change notification settings - Fork 436
Reviving Lee's Refresh now #250
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
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.
Do we already have test coverage on this?
all_tasks_xml = parsed_response.findall( | ||
'.//t:job', namespaces=ns) | ||
|
||
all_tasks = (JobItem._parse_element(x, ns) for x in all_tasks_xml) |
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: You can just do a list comprehension since you just convert to a list
a line later.
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.
🚀
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.
🚀
There has been an outstanding change for refresh now for a while. This is to finally get this into the code base.