Skip to content

Commit 165193c

Browse files
committed
More formatting fixes
1 parent 5f2c545 commit 165193c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

rosbridge_library/src/rosbridge_library/capabilities/advertise.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def register_advertisement(
8080
adv_id: str | None = None,
8181
latch: bool = False,
8282
queue_size: int = 100,
83-
qos: QoSProfile | None = None
83+
qos: QoSProfile | None = None,
8484
) -> None:
8585
# Register with the publisher manager, propagating any exception
8686
manager.register(
@@ -148,7 +148,7 @@ def advertise(self, message: dict[str, Any]) -> None:
148148
"durability_policy",
149149
"history_policy",
150150
"liveliness_policy",
151-
"reliability_policy"
151+
"reliability_policy",
152152
}:
153153
qos = None
154154

rosbridge_library/src/rosbridge_library/capabilities/subscribe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ def subscribe(self, msg: dict[str, Any]) -> None:
328328
)
329329
if "qos" in msg
330330
else None
331-
)
331+
),
332332
}
333333
self._subscriptions[topic].subscribe(**subscribe_args)
334334

0 commit comments

Comments
 (0)