We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8378eaa + 2cbd086 commit e43a78eCopy full SHA for e43a78e
mpl_point_clicker/__init__.py
@@ -3,8 +3,11 @@
3
# Copyright (c) Ian Hunt-Isaak.
4
# Distributed under the terms of the Modified BSD License.
5
6
+try:
7
+ from ._version import version as __version__
8
+except ImportError: # pragma: no cover
9
+ __version__ = "unknown"
10
from ._clicker import clicker
-from ._version import __version__
11
12
__all__ = [
13
"__version__",
0 commit comments