a9 commited on
Commit
c6a8d71
·
verified ·
1 Parent(s): f160fbc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -14,7 +14,7 @@ userLastOnlineTime: Dict[int, int] = {id: 0 for id in VALID_USER_IDS}
14
  # In-memory "database" using a list of dictionaries
15
  messages: List[Dict] = []
16
 
17
- async def timeMiliSec(sec_time):
18
  return int(sec_time * 1000)
19
 
20
 
 
14
  # In-memory "database" using a list of dictionaries
15
  messages: List[Dict] = []
16
 
17
+ def timeMiliSec(sec_time):
18
  return int(sec_time * 1000)
19
 
20