-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0a2a079
commit 256e429
Showing
9 changed files
with
26 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
from __future__ import annotations | ||
|
||
|
||
from ..constants import Subunit | ||
from . import MediaPlaybackSubunitBase | ||
from ..subunit import SubunitBase | ||
from . import MediaPlaybackMixins | ||
|
||
|
||
class Ipod(MediaPlaybackSubunitBase): | ||
class Ipod(MediaPlaybackMixins, SubunitBase): | ||
id = Subunit.IPOD |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
from __future__ import annotations | ||
|
||
from ..constants import Subunit | ||
from . import MediaPlaybackSubunitBase | ||
from ..subunit import SubunitBase | ||
from . import MediaPlaybackMixins | ||
|
||
|
||
class IpodUsb(MediaPlaybackSubunitBase): | ||
class IpodUsb(MediaPlaybackMixins, SubunitBase): | ||
id = Subunit.IPODUSB |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
from __future__ import annotations | ||
|
||
from ..constants import Subunit | ||
from . import MediaPlaybackSubunitBase | ||
from ..subunit import SubunitBase | ||
from . import MediaPlaybackMixins | ||
|
||
|
||
class Napster(MediaPlaybackSubunitBase): | ||
class Napster(MediaPlaybackMixins, SubunitBase): | ||
id = Subunit.NAPSTER |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
from __future__ import annotations | ||
|
||
from ..constants import Subunit | ||
from . import MediaPlaybackSubunitBase | ||
from ..subunit import SubunitBase | ||
from . import MediaPlaybackMixins | ||
|
||
|
||
class Pc(MediaPlaybackSubunitBase): | ||
class Pc(MediaPlaybackMixins, SubunitBase): | ||
id = Subunit.PC |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
from __future__ import annotations | ||
|
||
from ..constants import Subunit | ||
from . import MediaPlaybackSubunitBase | ||
from ..subunit import SubunitBase | ||
from . import MediaPlaybackMixins | ||
|
||
|
||
class Rhap(MediaPlaybackSubunitBase): | ||
class Rhap(MediaPlaybackMixins, SubunitBase): | ||
id = Subunit.RHAP |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
from __future__ import annotations | ||
|
||
from ..constants import Subunit | ||
from . import MediaPlaybackSubunitBase | ||
from ..subunit import SubunitBase | ||
from . import MediaPlaybackMixins | ||
|
||
|
||
class Server(MediaPlaybackSubunitBase): | ||
class Server(MediaPlaybackMixins, SubunitBase): | ||
id = Subunit.SERVER |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
from __future__ import annotations | ||
|
||
from ..constants import Subunit | ||
from . import MediaPlaybackSubunitBase | ||
from ..subunit import SubunitBase | ||
from . import MediaPlaybackMixins | ||
|
||
|
||
class Usb(MediaPlaybackSubunitBase): | ||
class Usb(MediaPlaybackMixins, SubunitBase): | ||
id = Subunit.USB |