From 744294f00ef201f86a98503f90f379e936622604 Mon Sep 17 00:00:00 2001 From: Lucas Abel <22837557+uael@users.noreply.github.com> Date: Mon, 22 May 2023 09:34:23 +0000 Subject: [PATCH] gatt: reset args ordering to original This was a breaking change --- bumble/gatt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bumble/gatt.py b/bumble/gatt.py index d99df816..ea2b6907 100644 --- a/bumble/gatt.py +++ b/bumble/gatt.py @@ -212,8 +212,8 @@ class Service(Attribute): self, uuid, characteristics: List[Characteristic], - included_services: List[Service] = [], primary=True, + included_services: List[Service] = [], ): # Convert the uuid to a UUID object if it isn't already if isinstance(uuid, str):