Skip to content

Commit

Permalink
Added __version__ in __init__.py (#126)
Browse files Browse the repository at this point in the history
  • Loading branch information
rosaboyle authored Dec 15, 2024
1 parent c3707ab commit 64ef7fb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion resend/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from .emails._emails import Emails
from .emails._tag import Tag
from .request import Request
from .version import get_version
from .version import get_version, __version__

# Config vars
api_key = os.environ.get("RESEND_API_KEY")
Expand All @@ -24,6 +24,7 @@
from .emails._emails import Emails # noqa

__all__ = [
"__version__"
"get_version",
"Request",
"Emails",
Expand Down

0 comments on commit 64ef7fb

Please sign in to comment.