Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Pankaj Singh <[email protected]>
  • Loading branch information
pankajkoti and pankajastro authored May 13, 2024
1 parent ae4ed8e commit 831f356
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cosmos/operators/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class AbstractDbtBaseOperator(BaseOperator, metaclass=ABCMeta):
environment variables for the new process; these are used instead
of inheriting the current process environment, which is the default
behavior. (templated)
:param append_env: . If True, inherits the environment variables
:param append_env: If True, inherits the environment variables
from current process and then environment variable passed by the user will either update the existing
inherited environment variables or the new variables gets appended to it.
If False (default), only uses the environment variables passed in env params
Expand Down
2 changes: 1 addition & 1 deletion cosmos/operators/local.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ class DbtLocalBaseOperator(AbstractDbtBaseOperator):
:param target_name: A name to use for the dbt target. If not provided, and no target is found
in your project's dbt_project.yml, "cosmos_target" is used.
:param should_store_compiled_sql: If true, store the compiled SQL in the compiled_sql rendered template.
:param append_env: . If True(default), inherits the environment variables
:param append_env: If True(default), inherits the environment variables
from current process and then environment variable passed by the user will either update the existing
inherited environment variables or the new variables gets appended to it.
If False, only uses the environment variables passed in env params
Expand Down

0 comments on commit 831f356

Please sign in to comment.