Skip to content

Commit fcaf987

Browse files
committed
Fix locked
1 parent b60d099 commit fcaf987

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/superannotate/lib/core/helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ def safe_time(timestamp):
139139
return "0" if str(timestamp) == "0.0" else timestamp
140140

141141
def convert_timestamp(timestamp):
142-
return timestamp / 10 ** 6 if timestamp else None
142+
return timestamp / 10 ** 6 if timestamp else "0"
143143

144144
editor_data = {
145145
"instances": [],

0 commit comments

Comments
 (0)