Skip to content

Commit

Permalink
source version from __version__
Browse files Browse the repository at this point in the history
  • Loading branch information
Ken Payne committed Dec 5, 2022
1 parent dc46db3 commit 93bcba3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tap_snowflake/tap.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
from singer_sdk.helpers._classproperty import classproperty
from singer_sdk.helpers._compat import metadata

from tap_snowflake import __version__
from tap_snowflake.client import SnowflakeStream


class TapSnowflake(SQLTap):
"""Snowflake tap class."""

__version__ = "0.0.0" # managed by poetry-dynamic-versioning
name = "tap-snowflake"

# From https://docs.snowflake.com/en/user-guide/sqlalchemy.html#connection-parameters # noqa: E501
Expand Down Expand Up @@ -64,7 +64,7 @@ def plugin_version(cls) -> str:
Returns:
The package version number.
"""
return cls.__version__
return __version__


if __name__ == "__main__":
Expand Down

0 comments on commit 93bcba3

Please sign in to comment.