From 980b31137242bef1a70083a0e933632def6b06b5 Mon Sep 17 00:00:00 2001 From: Deepak Mallubhotla Date: Sat, 20 Apr 2024 23:08:47 -0500 Subject: [PATCH] doc: adds overall command doc --- tantri/cli/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tantri/cli/__init__.py b/tantri/cli/__init__.py index 3b0d73b..210f7c6 100755 --- a/tantri/cli/__init__.py +++ b/tantri/cli/__init__.py @@ -39,6 +39,8 @@ def _set_up_logging(filename): @click.option("--log-file", help="A filename to use for logging (implies --log)") @click.version_option(tantri.get_version()) def cli(log, log_file): + """Utilities for generating simulated TLS time series data. + """ if log or (log_file is not None): # log file has been provided, let's log _set_up_logging(log_file)