Skip to content

Commit 0ee6e65

Browse files
committed
build: update sdk version
1 parent 089dfd9 commit 0ee6e65

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-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.7"
4+
__version__ = "0.2.14"
55
__title__ = "videodb"
66
__author__ = "videodb"
77
__email__ = "contact@videodb.io"

videodb/collection.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,9 @@ def delete_image(self, image_id: str) -> None:
9898
path=f"{ApiPath.image}/{image_id}", params={"collection_id": self.id}
9999
)
100100

101-
def connect_rtstream(self, url: str, name: str, sample_rate: int = 1) -> RTStream:
101+
def connect_rtstream(
102+
self, url: str, name: str, sample_rate: int = None
103+
) -> RTStream:
102104
rtstream_data = self._connection.post(
103105
path=f"{ApiPath.rtstream}",
104106
data={

0 commit comments

Comments
 (0)