From e8280ec3c7be86f18facf5924108f7c0e9cba46f Mon Sep 17 00:00:00 2001 From: Roman Tretiak Date: Fri, 22 Mar 2024 13:20:56 +0100 Subject: [PATCH] Use relative import --- ydb_sqlalchemy/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ydb_sqlalchemy/__init__.py b/ydb_sqlalchemy/__init__.py index 815058a..d57dab0 100644 --- a/ydb_sqlalchemy/__init__.py +++ b/ydb_sqlalchemy/__init__.py @@ -1,3 +1,3 @@ +from ._version import VERSION # noqa: F401 from .dbapi import IsolationLevel # noqa: F401 from .sqlalchemy import Upsert, types, upsert # noqa: F401 -from _version import VERSION