Skip to content

Commit b5e817e

Browse files
authored
Merge branch 'main' into rearrange-packages
2 parents 09eb6e3 + c473dc2 commit b5e817e

28 files changed

Lines changed: 1517 additions & 1398 deletions

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
__pycache__
1+
**/__pycache__
22
.pytest_cache
33
.ruff_cache
4+
uv.lock
45
.venv

rest/python/client/flower_shop/pyproject.toml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ dependencies = [
1515
[dependency-groups]
1616
dev = [
1717
"httpx>=0.26.0",
18+
"ruff>=0.14.11",
1819
]
1920

2021
[build-system]
@@ -23,3 +24,23 @@ build-backend = "hatchling.build"
2324

2425
[tool.hatch.build.targets.wheel]
2526
packages = ["."]
27+
28+
[tool.ruff]
29+
line-length = 80
30+
indent-width = 2
31+
32+
[tool.ruff.format]
33+
quote-style = "double"
34+
indent-style = "space"
35+
skip-magic-trailing-comma = false
36+
line-ending = "auto"
37+
docstring-code-format = true
38+
39+
[tool.ruff.lint]
40+
select = ["E", "F", "W", "B", "C4", "SIM", "N", "UP", "D", "PTH", "T20"]
41+
ignore = ["D203", "D213"]
42+
43+
[tool.ruff.lint.isort]
44+
combine-as-imports = true
45+
force-sort-within-sections = true
46+
case-sensitive = true

rest/python/client/flower_shop/sample_output/happy_path_dialog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@
1212
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
See the License for the specific language governing permissions and
1414
limitations under the License.
15+
16+
Note:
17+
This file is automatically generated by running simple_happy_path_client.py.
18+
Do not modify manually.
1519
-->
1620

1721
# UCP Happy Path Interaction Log

0 commit comments

Comments
 (0)