Skip to content

Commit

Permalink
Add deprecation message for fqn option (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
syou6162 authored Sep 11, 2023
1 parent 97643dd commit f284899
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/dbt_osmosis/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ def wrapper(*args, **kwargs):
help=(
"Specify models based on dbt's FQN. Looks like folder.folder, folder.folder.model, or"
" folder.folder.source.table. Use list command to see the scope of an FQN filter."
" This may be deprecated in the future. Please use model positional selectors instead."
),
)
@click.option(
Expand Down Expand Up @@ -209,6 +210,7 @@ def refactor(
help=(
"Specify models based on FQN. Use dots as separators. Looks like folder.folder.model or"
" folder.folder.source.table. Use list command to see the scope of an FQN filter."
" This may be deprecated in the future. Please use model positional selectors instead."
),
)
@click.option(
Expand Down Expand Up @@ -304,6 +306,7 @@ def organize(
help=(
"Specify models based on FQN. Use dots as separators. Looks like folder.folder.model or"
" folder.folder.source.table. Use list command to see the scope of an FQN filter."
" This may be deprecated in the future. Please use model positional selectors instead."
),
)
@click.option(
Expand Down

0 comments on commit f284899

Please sign in to comment.