Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plotly~=5.14
pandas~=2.0
ffmpeg-python~=0.2
pillow>=9.5,~=10.0
tqdm~=4.66.1
tqdm~=4.66
requests==2.*
aiofiles==23.*
fire==0.4.0
Expand Down
2 changes: 1 addition & 1 deletion src/superannotate/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import sys


__version__ = "4.4.36"
__version__ = "4.4.37"


os.environ.update({"sa_version": __version__})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ def serialize_response(
else:
data["res_data"] = data_json
return content_type(**data)
except json.decoder.JSONDecodeError:
except ValueError:
data["res_error"] = response.content
data["reason"] = response.reason
return content_type(**data)
Expand Down