You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 25, 2024. It is now read-only.
I find that I am constantly unpacking collections of objects by using the .values() argument. This is because the requests come back with a uuid for the object. I'm thinking maybe that is not all that useful after a few months now. What do you think? I know adding values() is not a huge deal, but since we always use it that way, perhaps we should remove it at the source?
Just a few examples.
environments = list(project.environments(slug__in=",".join(environment_slugs), ordering="slug").values())
suites = list(project.suites(slug__in=",".join(suite_slugs), ordering="slug").values())
for t in list(build.tests(environment=e.id,suite=s.id).values()):
I find that I am constantly unpacking collections of objects by using the
.values()argument. This is because the requests come back with auuidfor the object. I'm thinking maybe that is not all that useful after a few months now. What do you think? I know addingvalues()is not a huge deal, but since we always use it that way, perhaps we should remove it at the source?Just a few examples.