From 0be96c41e3b1dbe6b3bfb1015b7fa55a4a968ba0 Mon Sep 17 00:00:00 2001 From: Karlson Pfannschmidt Date: Sat, 10 Jul 2021 00:02:43 +0200 Subject: [PATCH] Undeprecate the distributed tuning framework. Closes #145 --- tune/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tune/cli.py b/tune/cli.py index 2f74f23..0cba1e3 100644 --- a/tune/cli.py +++ b/tune/cli.py @@ -28,7 +28,7 @@ def cli(): pass -@cli.command(hidden=True, deprecated=True) +@cli.command() @click.option( "--verbose", "-v", is_flag=True, default=False, help="Turn on debug output." ) @@ -85,7 +85,7 @@ def run_client( tc.run() -@cli.command(hidden=True, deprecated=True) +@cli.command() @click.option( "--verbose", "-v", is_flag=True, default=False, help="Turn on debug output." )