Skip to content

Commit 680b410

Browse files
tbitcsoz-agent
andcommitted
fix: restore spec_version indentation in config.py (inside class)
The version bump edit accidentally removed indentation, making spec_version a module-level variable instead of a Pydantic class field. Co-Authored-By: Oz <oz-agent@warp.dev>
1 parent fcb998b commit 680b410

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/specsmith/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ class ProjectConfig(BaseModel):
8585
description="Target platforms",
8686
)
8787
language: str = Field(default="python", description="Primary language/runtime")
88-
spec_version: str = Field(default="0.3.0", description="Spec version to scaffold from")
88+
spec_version: str = Field(default="0.3.0", description="Spec version to scaffold from")
8989
description: str = Field(default="", description="Short project description")
9090

9191
# Options

0 commit comments

Comments
 (0)