Skip to content

Commit 0738846

Browse files
committed
Fix setup.py
1 parent 12355d1 commit 0738846

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def get_version():
3030
author_email='suppoort@superannotate.com',
3131
url='https://github.com/superannotateai/superannotate-python-sdk',
3232
long_description=open('README.rst').read(),
33-
long_description_content_type='text/markdown',
33+
long_description_content_type='text/x-rst',
3434
install_requires=requirements,
3535
setup_requires=['wheel'],
3636
entry_points={

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(timestamp["timestamp"] / self.ratio))
190+
int(math.ceil(timesstamp["timestamp"] / self.ratio))
191191
].append(timestamp)
192192
frames_mapping = self.merge_first_frame(frames_mapping)
193193

0 commit comments

Comments
 (0)