Skip to content

Commit

Permalink
docs: fix RenderConfig load arg
Browse files Browse the repository at this point in the history
  • Loading branch information
jbandoro committed Aug 14, 2023
1 parent 5c68ed7 commit df41f3f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/configuration/parsing-methods.rst
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ To use this:
manifest_path="/path/to/manifest.json",
),
render_config=RenderConfig(
load_mode=LoadMode.DBT_MANIFEST,
load_method=LoadMode.DBT_MANIFEST,
)
# ...,
)
Expand All @@ -70,7 +70,7 @@ To use this:
DbtDag(
render_config=RenderConfig(
load_mode=LoadMode.DBT_LS,
load_method=LoadMode.DBT_LS,
)
# ...,
)
Expand All @@ -92,7 +92,7 @@ To use this:
DbtDag(
render_config=RenderConfig(
load_mode=LoadMode.CUSTOM,
load_method=LoadMode.CUSTOM,
)
# ...,
)

0 comments on commit df41f3f

Please sign in to comment.