This commit is contained in:
xgpt 2022-12-30 20:58:17 -05:00 committed by GitHub
parent 6d408bee87
commit ed0726d746
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -134,6 +134,6 @@ def ticks_diff(ticks1: int, ticks2: int) -> int:
def ticks_less(ticks1: int, ticks2: int) -> bool:
"""Return true iff ticks1 is less than ticks2,
"""Return true if ticks1 is less than ticks2,
assuming that they are within 2**28 ticks"""
return ticks_diff(ticks1, ticks2) < 0