Update app.py
Browse files
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 |
-
|
| 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 |
|