Skip to content
This repository has been archived by the owner on Oct 13, 2023. It is now read-only.

Commit

Permalink
Fix AttributeError: 'list' object has no attribute 'component'
Browse files Browse the repository at this point in the history
  • Loading branch information
locriandev committed Dec 9, 2022
1 parent 6979c4f commit 25d3f92
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doozerlib/cli/release_gen_payload.py
Expand Up @@ -1606,6 +1606,6 @@ async def check_nightlies_consistency(assembly_inspector: AssemblyInspector) ->
tasks = []
for arch, nightly in basis.reference_releases.primitive().items():
tasks.append(PayloadGenerator._check_nightly_consistency(assembly_inspector, nightly, arch))
issues.extend(await asyncio.gather(*tasks))

results = await asyncio.gather(*tasks)
issues.extend([issue for result in results for issue in result])
return issues

0 comments on commit 25d3f92

Please sign in to comment.