Skip to content

Commit

Permalink
fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
Ximinhan committed Dec 13, 2024
1 parent fd7449b commit 2b64746
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyartcd/pyartcd/pipelines/gen_assembly.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ async def run(self):
if self.skip_get_nightlies:
candidate_nightlies = self.nightlies
elif self.ignore_non_x86_nightlies:
candidate_nightlies = await self._get_latest_accepted_nightly()
candidate_nightlies = [await self._get_latest_accepted_nightly()]
else:
candidate_nightlies, latest_nightly = await asyncio.gather(
*[self._get_nightlies(), self._get_latest_accepted_nightly()])
Expand Down

0 comments on commit 2b64746

Please sign in to comment.