We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b1e0fd commit ba5eef8Copy full SHA for ba5eef8
1 file changed
src/robusta/cli/main.py
@@ -3,7 +3,7 @@
3
import time
4
import uuid
5
from contextlib import contextmanager
6
-from importlib.metadata import version as get_module_version
+# from importlib.metadata import version as get_module_version
7
from typing import List, Optional
8
from zipfile import ZipFile
9
@@ -151,7 +151,8 @@ def playground():
151
@app.command()
152
def version():
153
"""show the version of the local robusta-cli"""
154
- typer.echo(get_module_version("robusta-cli"))
+ pass
155
+ # typer.echo(get_module_version("robusta-cli"))
156
157
158
0 commit comments