Skip to content

Commit 92a76a3

Browse files
Fix missing import
Signed-off-by: Thara Palanivel <[email protected]>
1 parent 1b240cb commit 92a76a3

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

fms_mo/version.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@
1515

1616
try:
1717
# Local
18-
from ._version import __version__
18+
from ._version import ( # pylint: disable=unused-import
19+
__version__,
20+
__version_tuple__,
21+
)
1922
except ImportError as e:
2023
# Standard
2124
import warnings

0 commit comments

Comments
 (0)