Skip to content

Commit

Permalink
build: update version
Browse files Browse the repository at this point in the history
  • Loading branch information
ankit-v2-3 committed Nov 6, 2024
1 parent c4acaf8 commit 668988a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion videodb/__about__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
""" About information for videodb sdk"""


__version__ = "0.2.5"
__version__ = "0.2.6"
__title__ = "videodb"
__author__ = "videodb"
__email__ = "contact@videodb.io"
Expand Down
3 changes: 2 additions & 1 deletion videodb/collection.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,8 @@ def search_title(self, query) -> List[Video]:
},
)
return [
Video(self._connection, **result.get("video")) for result in search_data
{"video": Video(self._connection, **result.get("video"))}
for result in search_data
]

def upload(
Expand Down

0 comments on commit 668988a

Please sign in to comment.