We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b46a8c commit 5204c63Copy full SHA for 5204c63
adafruit_ble_apple_media.py
@@ -14,6 +14,8 @@
14
"""
15
try:
16
from typing import Union, Type
17
+
18
+ AppleMediaServiceType = Union("AppleMediaService", Type["AppleMediaService"])
19
except ImportError:
20
pass
21
@@ -33,8 +35,6 @@
33
35
# Disable protected access checks since our private classes are tightly coupled.
34
36
# pylint: disable=protected-access
37
-AppleMediaServiceType = Union("AppleMediaService", Type["AppleMediaService"])
-
38
39
class _RemoteCommand(ComplexCharacteristic):
40
"""Endpoint for sending commands to a media player. The value read will list all available
0 commit comments