From b8a4e11f101efeb00f3c33d4cd89e4ba0e7e3f56 Mon Sep 17 00:00:00 2001 From: Jeff Epler Date: Fri, 9 Aug 2024 20:14:58 +0300 Subject: [PATCH] fix indentation --- adafruit_ticks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adafruit_ticks.py b/adafruit_ticks.py index 835853a..2fa517b 100644 --- a/adafruit_ticks.py +++ b/adafruit_ticks.py @@ -124,7 +124,7 @@ def ticks_add(ticks: int, delta: int) -> int: "Add a delta to a base number of ticks, performing wraparound at 2**29ms." if -_TICKS_HALFPERIOD < delta < _TICKS_HALFPERIOD: return (ticks + delta) % _TICKS_PERIOD - raise OverflowError("ticks interval overflow") + raise OverflowError("ticks interval overflow") def ticks_diff(ticks1: int, ticks2: int) -> int: