We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 133a3f7 commit cb4ceb0Copy full SHA for cb4ceb0
2 files changed
README.md
@@ -5,7 +5,7 @@
5
6
Use the GoDice Python API to integrate GoDice functionality into your own Python applications
7
8
-
+[](https://pypi.org/project/godice)
9
10
**Supported features:**
11
godice/dice.py
@@ -41,8 +41,9 @@ def __init__(self, ble_client) -> None:
41
self._color_upd_q = asyncio.Queue()
42
self._battery_lvl_upd_q = asyncio.Queue()
43
self._xyz_interpret_fn = None
44
- self._nop_cb = lambda _: None
45
- self._position_upd_cb = self._nop_cb
+ async def _noop_cb(_num, _stab_descr):
+ pass
46
+ self._position_upd_cb = _noop_cb
47
48
async def connect(self):
49
await self._client.connect()
0 commit comments