Skip to content

Commit

Permalink
Merge pull request #13 from noahhusby/feat/advanced-transport-controls
Browse files Browse the repository at this point in the history
Fix model exports
  • Loading branch information
noahhusby authored Sep 10, 2024
2 parents 135f52a + a4fcb54 commit 1a08b18
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
16 changes: 15 additions & 1 deletion aiostreammagic/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,17 @@
"""Asynchronous Python client for StreamMagic API."""

from .exceptions import StreamMagicError, StreamMagicConnectionError
from .models import Info, PlayStateMetadata, PlayState, State, Source
from .models import (
Info,
PlayStateMetadata,
PlayState,
State,
Source,
NowPlaying,
TransportControl,
RepeatMode,
ShuffleMode,
)
from .stream_magic import StreamMagicClient

__all__ = [
Expand All @@ -13,4 +23,8 @@
"State",
"PlayState",
"PlayStateMetadata",
"NowPlaying",
"TransportControl",
"ShuffleMode",
"RepeatMode",
]
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "aiostreammagic"
version = "2.2.0"
version = "2.2.1"
description = "An async python package for interfacing with Cambridge Audio / Stream Magic compatible streamers."
authors = ["Noah Husby <[email protected]>"]
maintainers = ["Noah Husby <[email protected]>"]
Expand Down

0 comments on commit 1a08b18

Please sign in to comment.