You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In #655, we added a message at the bottom of ResultSet, so users knew that the returned value is not a data frame. However, some users might not want this verbosity.
Furthermore, there are other places where we are displaying feedback to the user (in some places using print, although we're moving to exclusively use display.py)
First, we should find all the places where we are showing feedback to the user, and then we can decide which ones we make optional. We can leverage the existing feedbackconfiguration setting so more of these messages are hidden if such settings is turned off.
As a first step, we need to investigate where we're showing feedback to the user so we can decide which ones we make optional via feedback
The text was updated successfully, but these errors were encountered:
In #655, we added a message at the bottom of ResultSet, so users knew that the returned value is not a data frame. However, some users might not want this verbosity.
Furthermore, there are other places where we are displaying feedback to the user (in some places using
print
, although we're moving to exclusively usedisplay.py
)First, we should find all the places where we are showing feedback to the user, and then we can decide which ones we make optional. We can leverage the existing
feedback
configuration setting so more of these messages are hidden if such settings is turned off.As a first step, we need to investigate where we're showing feedback to the user so we can decide which ones we make optional via
feedback
The text was updated successfully, but these errors were encountered: