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

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Dawnnnnnn committed Oct 3, 2018
1 parent 3fb0f89 commit 0a2c135
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bilibiliCilent.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@


async def handle_1_TV_raffle(type, num, real_roomid, raffleid):
await asyncio.sleep(random.uniform(1, 3)
await asyncio.sleep(random.uniform(1, 2))
response2 = await bilibili().get_gift_of_TV(type, real_roomid, raffleid)
Printer().printer(f"参与了房间 {real_roomid} 的广播抽奖", "Lottery", "blue")
json_response2 = await response2.json()
Expand Down Expand Up @@ -48,7 +48,7 @@ async def handle_1_room_TV(real_roomid):
await asyncio.wait(tasklist, return_when=asyncio.ALL_COMPLETED)


class bilibiliClient:
class bilibiliClient():

def __init__(self, roomid, area_name):
self.bilibili = bilibili()
Expand Down

0 comments on commit 0a2c135

Please sign in to comment.