Skip to content

Commit 10e0e55

Browse files
committed
4.4.6b2
1 parent 3335ab0 commit 10e0e55

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/superannotate/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import sys
33

44

5-
__version__ = "4.4.6b1"
5+
__version__ = "4.4.6b2"
66

77

88
sys.path.append(os.path.split(os.path.realpath(__file__))[0])

src/superannotate/lib/core/video_convertor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ def _process(self):
187187
interpolated_frames = {}
188188
for timestamp in parameter["timestamps"]:
189189
frames_mapping[
190-
int(math.ceil(timesstamp["timestamp"] / self.ratio))
190+
int(math.ceil(timestamp["timestamp"] / self.ratio))
191191
].append(timestamp)
192192
frames_mapping = self.merge_first_frame(frames_mapping)
193193

0 commit comments

Comments
 (0)