From 91152ebb1cde1c05929e44b28dc96bff71254977 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Tue, 1 Nov 2022 18:29:47 +0000 Subject: [PATCH] wrangler:recordify update cli help we only output .jsonl.gz to a DIRECTORY, so update cli help to reflect this --- rainfallwrangler/src/subcommands/recordify/meta.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rainfallwrangler/src/subcommands/recordify/meta.mjs b/rainfallwrangler/src/subcommands/recordify/meta.mjs index ea39200..bba4455 100644 --- a/rainfallwrangler/src/subcommands/recordify/meta.mjs +++ b/rainfallwrangler/src/subcommands/recordify/meta.mjs @@ -11,5 +11,5 @@ export default function(cli) { .reverse(); }) .argument("water-offset", "Make the water depth data be this many time steps ahead of the rainfall radar data. (default: 1)", 1, "integer") - .argument("output", "The path to the directory to write the generated TFRecord files to.", null, "string"); + .argument("output", "The path to the directory to write the generated .jsonl.gz files to.", null, "string"); }