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
Currently KojiTag calls listTagged from the koji api once and only once (unless you reset self.tagged_list). It is unclear from the current documentation that this is the case.
The text was updated successfully, but these errors were encountered:
I tripped on this one already as I was trying to test/use KojiTag ...
kt = KojiTag('sometag')
kt.builds()
for build in kt.tagged_list:
print(build)
kt.builds(latest=False, type='image')
for build in kt.tagged_list:
print(build['name'])
Description
Currently KojiTag calls listTagged from the koji api once and only once (unless you reset self.tagged_list). It is unclear from the current documentation that this is the case.
The text was updated successfully, but these errors were encountered: