Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 63f46f4

Browse files
PIG208timabbott
authored andcommitted
zephyr: Add missing return type annotation.
Signed-off-by: Zixuan James Li <[email protected]>
1 parent 02586f1 commit 63f46f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

zulip/integrations/zephyr/zephyr_mirror.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ async def run_shard(shard: str) -> int:
4343
process = await asyncio.create_subprocess_exec(*args, f"--shard={shard}")
4444
return await process.wait()
4545

46-
async def run_shards():
46+
async def run_shards() -> None:
4747
for coro in asyncio.as_completed(map(run_shard, shards)):
4848
await coro
4949
print("A mirroring shard died!")

0 commit comments

Comments
 (0)