From ba5eef87cb06b7a8ced2bbcbcc3925a55d6311bc Mon Sep 17 00:00:00 2001 From: arik Date: Tue, 22 Jun 2021 15:58:08 +0300 Subject: [PATCH] remove get_module_ver --- src/robusta/cli/main.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/robusta/cli/main.py b/src/robusta/cli/main.py index 5e9e00295..6a3f9a8d7 100644 --- a/src/robusta/cli/main.py +++ b/src/robusta/cli/main.py @@ -3,7 +3,7 @@ import time import uuid from contextlib import contextmanager -from importlib.metadata import version as get_module_version +# from importlib.metadata import version as get_module_version from typing import List, Optional from zipfile import ZipFile @@ -151,7 +151,8 @@ def playground(): @app.command() def version(): """show the version of the local robusta-cli""" - typer.echo(get_module_version("robusta-cli")) + pass + # typer.echo(get_module_version("robusta-cli")) @app.command()