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
Right now you have to use the right parameter to iterate on the cached data.
for build in kt.tagged_list:
...
Because KojiTag already is based on only call listTagged() from koji once, it already is a Set of Builds and some other accessors to look at the same set of cached data.
The text was updated successfully, but these errors were encountered:
Description
kt = KojiTag(tag='foo')
kt.builds(latest=True)
for build in kt:
...
What I Did
Right now you have to use the right parameter to iterate on the cached data.
for build in kt.tagged_list:
...
Because KojiTag already is based on only call listTagged() from koji once, it already is a Set of Builds and some other accessors to look at the same set of cached data.
The text was updated successfully, but these errors were encountered: