mirror of
https://github.com/microsoft/debugpy.git
synced 2025-12-23 08:48:12 +00:00
Update src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_net_command.py
Co-authored-by: Mike Fährmann <mike_faehrmann@web.de>
This commit is contained in:
parent
f7f754dab6
commit
244f830871
1 changed files with 1 additions and 1 deletions
|
|
@ -80,7 +80,7 @@ class NetCommand(_BaseNetCommand):
|
|||
try:
|
||||
text = json.dumps(as_dict)
|
||||
except TypeError:
|
||||
text = json.dumps(as_dict, default=lambda o: str(o))
|
||||
text = json.dumps(as_dict, default=str)
|
||||
|
||||
assert isinstance(text, str)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue