Skip to content

Commit 3c659ea

Browse files
committed
make regenerate_cli_snippets
1 parent d565566 commit 3c659ea

File tree

7 files changed

+12
-13
lines changed

7 files changed

+12
-13
lines changed

Diff for: examples/docs_snippets/docs_snippets/guides/components/index/3-tree.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ cd jaffle-platform && tree
88
│   │   └── __init__.py
99
│   └── lib
1010
│   └── __init__.py
11+
├── jaffle_platform_tests
12+
│   └── __init__.py
1113
├── jaffle_platform.egg-info
12-
│   ├── PKG-INFO
13-
│   ├── SOURCES.txt
1414
│   ├── dependency_links.txt
1515
│   ├── entry_points.txt
16+
│   ├── PKG-INFO
1617
│   ├── requires.txt
18+
│   ├── SOURCES.txt
1719
│   └── top_level.txt
18-
├── jaffle_platform_tests
19-
│   └── __init__.py
2020
├── pyproject.toml
2121
└── uv.lock
2222

Diff for: examples/docs_snippets/docs_snippets/guides/components/shell-script-component/2-shell-command-empty.py

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ class ShellCommand(Component, Resolvable):
1414
# added fields here will define yaml schema via Resolvable
1515

1616

17+
1718
def build_defs(self, context: ComponentLoadContext) -> dg.Definitions:
1819
# Add definition construction logic here.
1920
return dg.Definitions()

Diff for: examples/docs_snippets/docs_snippets/guides/dg/migrating-definitions/1-tree.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
tree
22

33
.
4-
├── README.md
54
├── my_existing_project
65
│   ├── __init__.py
76
│   ├── analytics
@@ -15,6 +14,7 @@ tree
1514
│   ├── __init__.py
1615
│   ├── assets.py
1716
│   └── jobs.py
18-
└── pyproject.toml
17+
├── pyproject.toml
18+
└── README.md
1919

2020
5 directories, 11 files

Diff for: examples/docs_snippets/docs_snippets/guides/dg/migrating-definitions/5-tree-after.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
tree
22

33
.
4-
├── README.md
54
├── my_existing_project
65
│   ├── __init__.py
76
│   ├── analytics
@@ -16,6 +15,7 @@ tree
1615
│   ├── assets.py
1716
│   └── jobs.py
1817
├── pyproject.toml
18+
├── README.md
1919
└── uv.lock
2020

2121
5 directories, 12 files

Diff for: examples/docs_snippets/docs_snippets/guides/dg/migrating-definitions/6-tree-after-all.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
tree
22

33
.
4-
├── README.md
54
├── my_existing_project
65
│   ├── __init__.py
76
│   ├── definitions.py
@@ -16,6 +15,7 @@ tree
1615
│   ├── assets.py
1716
│   └── jobs.py
1817
├── pyproject.toml
18+
├── README.md
1919
└── uv.lock
2020

2121
5 directories, 12 files
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
tree
22

33
.
4-
├── README.md
54
├── my_existing_project
65
│   ├── __init__.py
76
│   ├── assets.py
87
│   ├── definitions.py
98
│   └── py.typed
9+
├── README.md
1010
└── setup.py
1111

1212
2 directories, 6 files

Diff for: python_modules/libraries/dagster-dg/dagster_dg/templates/COMPONENT_TYPE/COMPONENT_TYPE_NAME_PLACEHOLDER.py.jinja

+2-4
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,9 @@ class {{ name }}(Component, Resolvable):
1414

1515
COMPONENT DESCRIPTION HERE.
1616
"""
17-
{% if dataclass -%}
18-
17+
{% if dataclass %}
1918
# added fields here will define yaml schema via Resolvable
20-
21-
{% endif -%}
19+
{% endif %}
2220

2321
{% if not dataclass %}
2422
def __init__(

0 commit comments

Comments
 (0)