Skip to content

Commit

Permalink
fix(python/sdk): fix version import (#5415)
Browse files Browse the repository at this point in the history
GitOrigin-RevId: a4d8f82f40e19d5a0bee151adc32305d5c871e62
  • Loading branch information
ploeber committed Jun 27, 2024
1 parent 4a5aa0f commit 3901889
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion assemblyai/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.28.0"
__version__ = "0.28.1"
3 changes: 2 additions & 1 deletion assemblyai/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
import httpx
from typing_extensions import Self

from . import __version__, types
from . import types
from .__version__ import __version__


class Client:
Expand Down

0 comments on commit 3901889

Please sign in to comment.