Commit c1569b2
authored
Make dicom_image_set optional (#4370)
When updating the models.py for gcapi I noticed that the dicom_image_set
is not optional:
```Python
class HyperlinkedImage(BaseModel):
pk: str
name: str
files: list[ImageFile]
dicom_image_set: DICOMImageSet
width: Optional[int]
height: Optional[int]
depth: Optional[int]
...
```1 parent 6cb9f57 commit c1569b2
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
42 | 42 | | |
43 | 43 | | |
44 | 44 | | |
45 | | - | |
| 45 | + | |
46 | 46 | | |
47 | 47 | | |
48 | 48 | | |
| |||
0 commit comments