Skip to content

Commit 0c34d15

Browse files
authored
Merge pull request #52 from mujin/fixTypeAnnotation20250404
Fixed a minor type annotation.
2 parents 0d6ccf2 + cd9e57c commit 0c34d15

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## 0.9.1 (2025-04-04)
4+
5+
### Changes
6+
7+
- Fix typing annotation.
8+
39
## 0.9.0 (2025-03-28)
410

511
### Changes

python/mujinwebstackclient/controllerwebclientraw.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@ async def _StopAllSubscriptions(self, error: Optional[ControllerGraphClientExcep
499499
subscription.GetSubscriptionCallbackFunction()(error=error, response=None)
500500
self._subscriptions.clear()
501501

502-
def SubscribeGraphAPI(self, query: str, callbackFunction: Callable[[Optional[str], Optional[dict]], None], variables: Optional[dict] = None) -> Subscription:
502+
def SubscribeGraphAPI(self, query: str, callbackFunction: Callable[[Optional[ControllerGraphClientException], Optional[dict]], None], variables: Optional[dict] = None) -> Subscription:
503503
""" Subscribes to changes on Mujin controller.
504504
505505
Args:

python/mujinwebstackclient/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '0.9.0'
1+
__version__ = '0.9.1'
22

33
# Do not forget to update CHANGELOG.md
44

0 commit comments

Comments
 (0)