From 97564e33c500c79b991da25ce482179bed464064 Mon Sep 17 00:00:00 2001 From: Laurens Valk Date: Tue, 25 Aug 2026 12:19:24 +0200 Subject: [PATCH] pybricks.parameters: Fix tests for imports. --- jedi/tests/test_complete_import.py | 3 +++ src/pybricks/messaging.py | 1 + 2 files changed, 4 insertions(+) diff --git a/jedi/tests/test_complete_import.py b/jedi/tests/test_complete_import.py index ee5e98a..6d506e5 100644 --- a/jedi/tests/test_complete_import.py +++ b/jedi/tests/test_complete_import.py @@ -121,7 +121,10 @@ def test_from_pybricks_parameters_import(): "Button", "Color", "Direction", + "Font", "Icon", + "Image", + "ImageFile", "Port", "Side", "Stop", diff --git a/src/pybricks/messaging.py b/src/pybricks/messaging.py index 68f3565..ff70fde 100644 --- a/src/pybricks/messaging.py +++ b/src/pybricks/messaging.py @@ -452,6 +452,7 @@ class AppData: # Hide type-only names from jedi completions in the module namespace. if TYPE_CHECKING: + del abstractmethod del Callable del Iterable del MaybeAwaitable