Skip to content

Commit

Permalink
chore: black
Browse files Browse the repository at this point in the history
  • Loading branch information
jannisborn committed Jun 9, 2024
1 parent 607c0d7 commit 5edbe90
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/gt4sd/properties/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ class S3Parameters(PropertyPredictorParameters):
domain: DomainSubmodule = Field(
..., examples=["molecules"], description="Submodule of gt4sd.properties"
)
algorithm_name: str = Field(..., examples=["MCA"], description="Name of the algorithm")
algorithm_name: str = Field(
..., examples=["MCA"], description="Name of the algorithm"
)
algorithm_version: str = Field(
..., examples=["v0"], description="Version of the algorithm"
)
Expand Down
4 changes: 3 additions & 1 deletion src/gt4sd/properties/molecules/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,9 @@ class DockingParameters(PropertyPredictorParameters):
box_center: List[int] = Field(
examples=[[15.190, 53.903, 16.917]], description="Docking box center"
)
box_size: List[float] = Field(examples=[[20, 20, 20]], description="Docking box size")
box_size: List[float] = Field(
examples=[[20, 20, 20]], description="Docking box size"
)


class S3ParametersMolecules(S3Parameters):
Expand Down

0 comments on commit 5edbe90

Please sign in to comment.