We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a89057 commit d26bd5cCopy full SHA for d26bd5c
videodb/__about__.py
@@ -1,7 +1,7 @@
1
""" About information for videodb sdk"""
2
3
4
-__version__ = "0.2.8"
+__version__ = "0.2.9"
5
__title__ = "videodb"
6
__author__ = "videodb"
7
__email__ = "contact@videodb.io"
videodb/collection.py
@@ -182,8 +182,10 @@ def make_public(self):
182
self._connection.patch(
183
path=f"{ApiPath.collection}/{self.id}", data={"is_public": True}
184
)
185
+ self.is_public = True
186
187
def make_private(self):
188
189
path=f"{ApiPath.collection}/{self.id}", data={"is_public": False}
190
191
+ self.is_public = False
0 commit comments