Skip to content

Commit 126c753

Browse files
committed
fmt: model.py
1 parent f0c40a9 commit 126c753

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

schema/model.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -516,7 +516,8 @@ class Target(StrictBaseModel):
516516
None, description="The PyPI dependencies for this target"
517517
)
518518
develop: dict[CondaPackageName, SourceSpecTable] | None = Field(
519-
None, description="Source packages whose dependencies should be installed without building the package itself. Useful for development environments."
519+
None,
520+
description="Source packages whose dependencies should be installed without building the package itself. Useful for development environments.",
520521
)
521522
tasks: dict[TaskName, TaskInlineTable | list[DependsOn] | NonEmptyStr] | None = Field(
522523
None, description="The tasks of the target"
@@ -554,7 +555,8 @@ class Feature(StrictBaseModel):
554555
None, description="The PyPI dependencies of this feature"
555556
)
556557
develop: dict[CondaPackageName, SourceSpecTable] | None = Field(
557-
None, description="Source packages whose dependencies should be installed without building the package itself. Useful for development environments."
558+
None,
559+
description="Source packages whose dependencies should be installed without building the package itself. Useful for development environments.",
558560
)
559561
tasks: dict[TaskName, TaskInlineTable | list[DependsOn] | NonEmptyStr] | None = Field(
560562
None, description="The tasks provided by this feature"
@@ -830,7 +832,8 @@ class BaseManifest(StrictBaseModel):
830832
None, description="The PyPI dependencies"
831833
)
832834
develop: dict[CondaPackageName, SourceSpecTable] | None = Field(
833-
None, description="Source packages whose dependencies should be installed without building the package itself. Useful for development environments."
835+
None,
836+
description="Source packages whose dependencies should be installed without building the package itself. Useful for development environments.",
834837
)
835838
tasks: dict[TaskName, TaskInlineTable | list[DependsOn] | NonEmptyStr] | None = Field(
836839
None, description="The tasks of the project"

0 commit comments

Comments
 (0)