Skip to content

Commit

Permalink
chore: Autoformat code
Browse files Browse the repository at this point in the history
  • Loading branch information
kjy5 authored and github-actions[bot] committed Sep 24, 2024
1 parent ccda84e commit 95d13a3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/vbl_aquarium/models/pinpoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from pydantic import Field

from vbl_aquarium.models.unity import Vector2, Vector3, Color
from vbl_aquarium.models.unity import Color, Vector2, Vector3
from vbl_aquarium.utils.vbl_base_model import VBLBaseModel

# CRANIOTOMY
Expand All @@ -13,6 +13,7 @@ class CraniotomyModel(VBLBaseModel):
size: Vector2
position: Vector3


# TRANSFORM


Expand All @@ -25,6 +26,7 @@ class AffineTransformModel(VBLBaseModel):

# RIG


class RigModel(VBLBaseModel):
name: str
image: str
Expand All @@ -35,13 +37,15 @@ class RigModel(VBLBaseModel):

# Probes and insertions


class InsertionModel(VBLBaseModel):
position: Vector3
angles: Vector3
atlas_name: str
transform_name: str
reference_coord: Vector3


class ProbeModel(VBLBaseModel):
insertion: InsertionModel

Expand All @@ -53,6 +57,7 @@ class ProbeModel(VBLBaseModel):

# Full scene


class SceneModel(VBLBaseModel):
atlas_name: str
transform_name: str
Expand Down

0 comments on commit 95d13a3

Please sign in to comment.