Skip to content

Commit b79732c

Browse files
style: fix ruff import wrap and CHANGELOG MD024
Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 99594fd commit b79732c

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## 0.2.8 - 2026-07-22
44

5-
### CLI
5+
### CLI / argv
66

77
- Accept space-separated `--addons` / `--extend` values (CNA Commander parity): `--addons fastapi-docker github-setup` expands to repeated flags before Typer parses.
88

packages/create-awesome-python-app/tests/test_cli.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,10 @@ async def fake_create_python_app(project_directory, options, *_args, **_kwargs):
272272

273273

274274
def test_expand_variadic_addons_and_extend() -> None:
275-
from create_awesome_python_app.cli import _expand_variadic_option, _preprocess_cli_argv
275+
from create_awesome_python_app.cli import (
276+
_expand_variadic_option,
277+
_preprocess_cli_argv,
278+
)
276279

277280
assert _expand_variadic_option(
278281
["cpa", "my-api", "--addons", "fastapi-docker", "github-setup", "--no-install"],

0 commit comments

Comments
 (0)