Skip to content

Commit 087445c

Browse files
committed
revert flush=True
1 parent 87180c8 commit 087445c

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

scripts/stubsabot.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1001,7 +1001,8 @@ async def main() -> int:
10011001
action_count = 0
10021002
for task in asyncio.as_completed(tasks):
10031003
update = await task
1004-
print(f"{update.distribution}... {update}", flush=True)
1004+
print(f"{update.distribution}... ", end="")
1005+
print(update)
10051006

10061007
if isinstance(update, NoUpdate):
10071008
continue

0 commit comments

Comments
 (0)