Skip to content

Commit 668988a

Browse files
committed
build: update version
1 parent c4acaf8 commit 668988a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

videodb/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
""" About information for videodb sdk"""
22

33

4-
__version__ = "0.2.5"
4+
__version__ = "0.2.6"
55
__title__ = "videodb"
66
__author__ = "videodb"
77
__email__ = "[email protected]"

videodb/collection.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,8 @@ def search_title(self, query) -> List[Video]:
126126
},
127127
)
128128
return [
129-
Video(self._connection, **result.get("video")) for result in search_data
129+
{"video": Video(self._connection, **result.get("video"))}
130+
for result in search_data
130131
]
131132

132133
def upload(

0 commit comments

Comments
 (0)