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 cff83a2 commit c23d3caCopy full SHA for c23d3ca
videodb/__init__.py
@@ -4,7 +4,6 @@
4
import logging
5
6
from typing import Optional
7
-from videodb.__about__ import __version__
8
from videodb._utils._video import play_stream
9
from videodb._constants import (
10
VIDEO_DB_API,
@@ -26,8 +25,6 @@
26
25
27
logger: logging.Logger = logging.getLogger("videodb")
28
29
-__version__ = "0.1.2"
30
-__author__ = "videodb"
31
32
__all__ = [
33
"VideodbError",
videodb/client.py
@@ -5,7 +5,7 @@
Union,
List,
)
-from videodb import __version__
+from videodb.__about__ import __version__
ApiPath,
11
0 commit comments