Skip to content

Commit c23d3ca

Browse files
committed
fix: linter
1 parent cff83a2 commit c23d3ca

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

videodb/__init__.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
import logging
55

66
from typing import Optional
7-
from videodb.__about__ import __version__
87
from videodb._utils._video import play_stream
98
from videodb._constants import (
109
VIDEO_DB_API,
@@ -26,8 +25,6 @@
2625

2726
logger: logging.Logger = logging.getLogger("videodb")
2827

29-
__version__ = "0.1.2"
30-
__author__ = "videodb"
3128

3229
__all__ = [
3330
"VideodbError",

videodb/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Union,
66
List,
77
)
8-
from videodb import __version__
8+
from videodb.__about__ import __version__
99
from videodb._constants import (
1010
ApiPath,
1111
)

0 commit comments

Comments
 (0)