Skip to content

Commit

Permalink
use repr function to get string representation (#15343)
Browse files Browse the repository at this point in the history
  • Loading branch information
amunger authored Mar 11, 2024
1 parent 3e9053c commit 3587c5c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def getValue(variable):
original_display = set_pandas_display_options()

try:
return truncateString(_VSCODE_builtins.str(variable))
return truncateString(_VSCODE_builtins.repr(variable))
finally:
if original_display:
set_pandas_display_options(original_display)
Expand Down

0 comments on commit 3587c5c

Please sign in to comment.