Skip to content

Commit

Permalink
Autoformat code
Browse files Browse the repository at this point in the history
  • Loading branch information
dbirman authored and github-actions[bot] committed Mar 27, 2024
1 parent c4a9931 commit c4f1fcf
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/vbl_aquarium/models/urchin.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ class AtlasModel(VBLBaseModel):
name: str
reference_coord: Vector3 = None
areas: List[StructureModel]
colormap: str = ''
colormap: str = ""


class StructureModel(VBLBaseModel):
name: str
Expand All @@ -54,7 +55,8 @@ class StructureModel(VBLBaseModel):
visible: bool = False
color_intensity: float = -1
side: int = 0
material: str = 'default'
material: str = "default"


# Camera

Expand All @@ -78,9 +80,11 @@ class CameraMode(str, Enum):

# Individual mesh neuron


class PrimitiveMeshModel(VBLBaseModel):
data: List[MeshModel]


class MeshModel(VBLBaseModel):
id: str = Field(alias="ID")
shape: str
Expand Down

0 comments on commit c4f1fcf

Please sign in to comment.