From 5193997e6a605241a991f93bfbf461861eb06c4c Mon Sep 17 00:00:00 2001 From: EGJ-Moorington Date: Mon, 12 Aug 2024 17:38:01 +0200 Subject: [PATCH] Renamed keypad._EventQueue for parity with CircuitPython --- src/keypad.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/keypad.py b/src/keypad.py index b379c20f..4d02496c 100644 --- a/src/keypad.py +++ b/src/keypad.py @@ -67,7 +67,7 @@ def __repr__(self): ) -class _EventQueue: +class EventQueue: """ A queue of `Event` objects, filled by a `keypad` scanner such as `Keys` or `KeyMatrix`.