Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated utils.py for better warning messages #617

Merged
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
12 changes: 9 additions & 3 deletions taipy/gui/_renderers/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
# specific language governing permissions and limitations under the License.

import typing as t
import pandas as pd

from .._warnings import _warn
from ..types import NumberTypes
Expand All @@ -31,14 +32,19 @@ def _get_columns_dict_from_list(
):
col_dict = {}
idx = 0
cols = str(list(value.columns) if isinstance(value, pd.DataFrame) else list(value.keys()) if isinstance(value, (dict, _MapDict)) else value if isinstance(value, (list, tuple)) else value)

for col in col_list:
if col in col_types_keys:
col_dict[col] = {"index": idx}
idx += 1
elif col:
_warn(
FredLL-Avaiga marked this conversation as resolved.
Show resolved Hide resolved
f'Error column "{col}" is not present in the Dataframe "{value.head(0) if hasattr(value, "head") else value}".' # noqa: E501
)
if col not in cols:
_warn(
f'Error column "{col}" is not present. Available columns/keys: {cols}.' # noqa: E501
)
else:
_warn("The 'value' argument is of an unsupported type. Expected DataFrame, dict, list, or tuple.")
return col_dict


Expand Down
Loading