We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7e0790 commit 03e6de6Copy full SHA for 03e6de6
1 file changed
src/somesy/core/models.py
@@ -233,9 +233,9 @@ def at_least_one_target(cls, values):
233
no_sync_codemeta: Annotated[
234
bool, Field(description="Do not sync with codemeta.json.")
235
] = False
236
- codemeta_file: Annotated[Path, Field(description="codemeta.json file path.")] = (
237
- Path("codemeta.json")
238
- )
+ codemeta_file: Annotated[
+ Union[Path, List[Path]], Field(description="codemeta.json file path.")
+ ] = Path("codemeta.json")
239
merge_codemeta: Annotated[
240
bool,
241
Field(
0 commit comments