Skip to content

Commit

Permalink
Version - use absolute import rather than relative
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-janssen committed Oct 27, 2024
1 parent 7273a9f commit 221de37
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions executorlib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,11 @@
from executorlib.shared.inputcheck import (
check_refresh_rate as _check_refresh_rate,
)
from executorlib._version import (
get_versions as _get_versions
)

from ._version import get_versions

__version__ = get_versions()["version"]
__version__ = _get_versions()["version"]
__all__ = []


Expand Down

0 comments on commit 221de37

Please sign in to comment.