Skip to content

Commit deb4b57

Browse files
committed
black
1 parent 31d2ad2 commit deb4b57

1 file changed

Lines changed: 2 additions & 8 deletions

File tree

src/aind_data_schema/device.py

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -620,10 +620,7 @@ class Monitor(Device):
620620
"""Description of visual display for visual stimuli"""
621621

622622
device_type: Literal["Monitor"] = Field("Monitor", const=True, readOnly=True)
623-
manufacturer: EnumSubset[
624-
Manufacturer.ASUS,
625-
Manufacturer.LG
626-
]
623+
manufacturer: EnumSubset[Manufacturer.ASUS, Manufacturer.LG]
627624
refresh_rate: int = Field(..., title="Refresh rate (Hz)", units="Hz", ge=60)
628625
width: int = Field(..., title="Width (pixels)", units="pixels")
629626
height: int = Field(..., title="Height (pixels)", units="pixels")
@@ -680,10 +677,7 @@ class Speaker(Device):
680677
"""Description of a speaker for auditory stimuli"""
681678

682679
device_type: Literal["Speaker"] = Field("Speaker", const=True, readOnly=True)
683-
manufacturer: EnumSubset[
684-
Manufacturer.TYMPHANY,
685-
Manufacturer.ISL
686-
]
680+
manufacturer: EnumSubset[Manufacturer.TYMPHANY, Manufacturer.ISL]
687681
position: Optional[RelativePosition] = Field(None, title="Relative position of the monitor")
688682

689683

0 commit comments

Comments
 (0)