From 4f15fcb2fb62d7a5ec74c233602f99cf8144dca0 Mon Sep 17 00:00:00 2001 From: Jan Volckaert Date: Fri, 22 Dec 2023 17:12:15 +0100 Subject: [PATCH] add missing return value in _begin_transaction --- displayio/_fourwire.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/displayio/_fourwire.py b/displayio/_fourwire.py index 1cf1682..c9cceda 100644 --- a/displayio/_fourwire.py +++ b/displayio/_fourwire.py @@ -162,6 +162,8 @@ class FourWire: if self._chip_select is not None: self._chip_select.value = False + return True + def _end_transaction(self) -> None: """End the SPI transaction by unlocking and setting Chip Select""" if self._chip_select is not None: -- 2.49.0