Skip to content

Commit

Permalink
Added type annotation in commands.py
Browse files Browse the repository at this point in the history
  • Loading branch information
danmackey committed Sep 2, 2023
1 parent d5e0bba commit 7bdeaef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ror_server_bot/ror_bot/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ async def execute(self, client: 'RoRClient', uid: int):
)

# start at 1 to immediately send the first countdown message
time = 1
time: float = 1

@client.server.on(RoRClientEvents.FRAME_STEP)
async def on_frame_step(delta: float):
Expand Down

0 comments on commit 7bdeaef

Please sign in to comment.