aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGilles Boccon-Gibod <boccongibod@google.com>2024-05-13 16:11:42 -0700
committerGitHub <noreply@github.com>2024-05-13 16:11:42 -0700
commite34f6b5fd30df6c9c9d770f1a211986d818568ec (patch)
tree20240534f3249d38cabbd07069d4f14f1773ca6c
parent8a0482c9472df6a5748dd5882b63d25a05d2a4ea (diff)
parent12af7a526c86fdf7293cb9175729d96eeee363b7 (diff)
downloadbumble-upstream-main.tar.gz
Merge pull request #484 from google/gbg/quick-fix-002upstream-main
fix incorrect var reference
-rw-r--r--bumble/device.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bumble/device.py b/bumble/device.py
index 6bc945a..7a7793a 100644
--- a/bumble/device.py
+++ b/bumble/device.py
@@ -2188,7 +2188,7 @@ class Device(CompositeEventEmitter):
# controller.
await self.send_command(
HCI_LE_Remove_Advertising_Set_Command(
- advertising_handle=advertising_data
+ advertising_handle=advertising_handle
),
check_result=False,
)