Skip to content

Commit 0ad6cd1

Browse files
fix(pre_commit): 🎨 auto format pre-commit hooks
1 parent 25e3b5f commit 0ad6cd1

File tree

2 files changed

+4
-10
lines changed

2 files changed

+4
-10
lines changed
Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
1-
from supervision.video.utils import SOURCE_TYPE, VideoInfo
2-
from supervision.video.core import Video
31
from supervision.video.backend.base import BaseBackend, BaseWriter
2+
from supervision.video.core import Video
3+
from supervision.video.utils import SOURCE_TYPE, VideoInfo
44

5-
__all__ = [
6-
'Video',
7-
'VideoInfo',
8-
'SOURCE_TYPE',
9-
'BaseBackend',
10-
'BaseWriter'
11-
]
5+
__all__ = ["SOURCE_TYPE", "BaseBackend", "BaseWriter", "Video", "VideoInfo"]

β€Žsupervision/video/backend/base.pyβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from abc import ABC, abstractmethod
22
from collections.abc import Callable
3-
from typing import Optional, Tuple, TYPE_CHECKING
3+
from typing import TYPE_CHECKING
44

55
import numpy as np
66

0 commit comments

Comments
Β (0)