We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 935691a commit 1ace508Copy full SHA for 1ace508
1 file changed
rmcp/version.py
@@ -11,7 +11,7 @@
11
def get_version() -> str:
12
"""
13
Get the version of the RMCP package.
14
-
+
15
Returns:
16
str: The version string of the installed package, or a fallback
17
version if the package is not installed (development mode).
@@ -21,11 +21,12 @@ def get_version() -> str:
21
except PackageNotFoundError:
22
# Package is not installed - fallback for development
23
return "0.0.0+unknown"
24
25
except ImportError:
26
# Should not happen with Python >=3.10, but keeping as safety
27
28
"""Fallback version function for older Python versions."""
29
30
31
-__all__ = ["get_version"]
32
+__all__ = ["get_version"]
0 commit comments