time -> get_time
This commit is contained in:
@@ -5,13 +5,13 @@ from collections import Counter
|
||||
import vona.config as config
|
||||
import nacl.encoding
|
||||
import nacl.signing
|
||||
import time as ti
|
||||
import hashlib
|
||||
import base64
|
||||
import random
|
||||
import httpx
|
||||
import json
|
||||
import copy
|
||||
import time
|
||||
import re
|
||||
|
||||
version = "1.5.0"
|
||||
@@ -466,5 +466,5 @@ def strip_state(state_events) -> list:
|
||||
return new_list
|
||||
|
||||
|
||||
def time() -> int:
|
||||
return int(str(ti.time() * 1000).split(".")[0])
|
||||
def get_time() -> int:
|
||||
return int(str(time.time() * 1000).split(".")[0])
|
||||
|
||||
Reference in New Issue
Block a user