Skip to content

Commit bcc1e49

Browse files
committed
fix: resolve PR1690 ruff syntax regression
1 parent 3f18d22 commit bcc1e49

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ Recent changes to the Specify CLI and templates are documented here.
77
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
88
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
99

10+
## [0.1.13] - 2026-03-03
11+
12+
### Fixed
13+
14+
- Fixed a syntax regression in `src/specify_cli/__init__.py` in `_build_ai_assistant_help()` that broke `ruff` and `pytest` collection in CI.
15+
1016
## [0.1.12] - 2026-03-02
1117

1218
### Changed

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "specify-cli"
3-
version = "0.1.12"
3+
version = "0.1.13"
44
description = "Specify CLI, part of GitHub Spec Kit. A tool to bootstrap your projects for Spec-Driven Development (SDD)."
55
requires-python = ">=3.11"
66
dependencies = [
@@ -51,4 +51,3 @@ precision = 2
5151
show_missing = true
5252
skip_covered = false
5353

54-

src/specify_cli/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ def _build_ai_assistant_help() -> str:
278278

279279
alias_phrases = []
280280
for alias, target in sorted(AI_ASSISTANT_ALIASES.items()):
281-
alias_phrases.append(f\"'{alias}' as an alias for '{target}'\")
281+
alias_phrases.append(f"'{alias}' as an alias for '{target}'")
282282

283283
if len(alias_phrases) == 1:
284284
aliases_text = alias_phrases[0]

0 commit comments

Comments
 (0)