From d4b0da9265c9e1f06a4f56df674b92c9bd2fe127 Mon Sep 17 00:00:00 2001 From: Josh Wu Date: Fri, 16 Jan 2026 15:21:26 +0800 Subject: [PATCH] Fix missing ClassVar import --- bumble/hci.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bumble/hci.py b/bumble/hci.py index 3bf5012c..05fac206 100644 --- a/bumble/hci.py +++ b/bumble/hci.py @@ -28,6 +28,7 @@ from dataclasses import field from typing import ( Any, + ClassVar, Literal, TypeVar, cast,