Skip to content

Commit

Permalink
adlfs: fix version typo
Browse files Browse the repository at this point in the history
  • Loading branch information
efiop committed Dec 23, 2023
1 parent f80d0af commit 2de2249
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions adlfs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
__all__ = ["AzureBlobFileSystem", "AzureBlobFile", "AzureDatalakeFileSystem"]

try:
from ._dvc_version import version as __version__ # type: ignore[import]
from ._dvc_version import version_tuple # type: ignore[import]
from ._version import version as __version__ # type: ignore[import]
from ._version import version_tuple # type: ignore[import]
except ImportError:
__version__ = "UNKNOWN"
version_tuple = (0, 0, __version__) # type: ignore[assignment]

0 comments on commit 2de2249

Please sign in to comment.