From cfb10f50b30a638f871d1d4cbe138505aa81b3e2 Mon Sep 17 00:00:00 2001 From: Doug Beatty <44704949+dbeatty10@users.noreply.github.com> Date: Tue, 1 Oct 2024 13:21:28 -0600 Subject: [PATCH] `--inline-direct` is an internal CLI flag --- core/dbt/cli/params.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/dbt/cli/params.py b/core/dbt/cli/params.py index 33f586248c5..96e9e7acd7a 100644 --- a/core/dbt/cli/params.py +++ b/core/dbt/cli/params.py @@ -490,7 +490,8 @@ inline_direct = click.option( "--inline-direct", envvar=None, - help="Pass SQL inline to dbt show. Do not load the entire project or apply templating.", + help="Internal flag to pass SQL inline to dbt show. Do not load the entire project or apply templating.", + hidden=True, ) # `--select` and `--models` are analogous for most commands except `dbt list` for legacy reasons.