Skip to content

Commit 3fa1583

Browse files
committed
fix default variable setting
1 parent 451d620 commit 3fa1583

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/somesy/core/models.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -187,9 +187,9 @@ def at_least_one_target(cls, values):
187187
no_sync_codemeta: Annotated[
188188
bool, Field(description="Do not sync with codemeta.json.")
189189
] = False
190-
codemeta_file: Annotated[Path, Field(description="codemeta.json file path.")] = (
191-
Path("codemeta.json"),
192-
)
190+
codemeta_file: Annotated[
191+
Path, Field(description="codemeta.json file path.")
192+
] = Path("codemeta.json")
193193

194194
def log_level(self) -> SomesyLogLevel:
195195
"""Return log level derived from this configuration."""

0 commit comments

Comments
 (0)