Skip to content

Commit f08e9cb

Browse files
author
Songki Choi
authored
Fix OTX1.1 -> Geti1.4 integration issues (#1910)
* Add dill to requirements/api.txt * Return None instead of raising NotImplementedError in IMedia2DEntity.path --------- Signed-off-by: Songki Choi <[email protected]>
1 parent d7a4539 commit f08e9cb

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

otx/api/entities/media.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,4 @@ def width(self) -> int:
5454
@property
5555
def path(self) -> Optional[str]:
5656
"""Returns the path of the 2D Media object."""
57-
raise NotImplementedError
57+
return None

requirements/api.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ pymongo==3.12.0
99
scikit-learn==0.24.*
1010
Shapely>=1.7.1,<=1.8.0
1111
imagesize==1.4.1
12+
dill>=0.3.6

0 commit comments

Comments
 (0)