Add default values to optional fields in SampleUpdate
This commit is contained in:
@ -661,9 +661,13 @@ class PuckWithTellPosition(BaseModel):
|
||||
id: int
|
||||
puck_name: str
|
||||
puck_type: str
|
||||
puck_location_in_dewar: Optional[str]
|
||||
dewar_id: Optional[int]
|
||||
dewar_name: Optional[str]
|
||||
puck_location_in_dewar: Optional[int]
|
||||
dewar_id: Optional[
|
||||
int
|
||||
] # was changed to optional but probably needs to be not optional
|
||||
dewar_name: Optional[
|
||||
str
|
||||
] # was changed to optional but probably needs to be not optional
|
||||
user: str = "e16371"
|
||||
samples: Optional[List[Sample]] = None
|
||||
tell_position: Optional[str]
|
||||
|
Reference in New Issue
Block a user