cache note arc points, untruncate time

This commit is contained in:
Anthony Samms
2026-01-15 15:15:19 -05:00
parent f62201dbb5
commit 0c9645bda7
3 changed files with 20 additions and 20 deletions

View File

@@ -40,9 +40,9 @@ def rounded(num: float) -> int:
result += 1
return sign * result
def get_current_ms() -> int:
def get_current_ms() -> float:
"""Get the current time in milliseconds"""
return rounded(time.time() * 1000)
return time.time() * 1000
def strip_comments(code: str) -> str:
"""Strip comments from a string of code"""