Skip to content
Snippets Groups Projects
Commit 10008133 authored by Bert Palm's avatar Bert Palm 🎇
Browse files

improved itype warning text

parent 5c5161f8
No related branches found
No related tags found
No related merge requests found
......@@ -283,13 +283,16 @@ dios_options = {
def _throw_MixedItype_err_or_warn(itype):
msg = f"'{itype}'. Using a non-unique Itype for a DictOfSeries, is not recommend. " \
f"As soon as series \nwith different index types are inserted, selecting and slicing data will " \
f"almost always fail. You are hereby warned!"
msg = f"Using '{itype.name}' as itype is not recommend. " \
f"As soon as series with different index types are inserted,\n" \
f"indexing and slicing will almost always fail. "
if dios_options[OptsFields.mixed_itype_warn_policy] in ['ignore', Opts.itype_ignore]:
pass
elif dios_options[OptsFields.mixed_itype_warn_policy] in ['error', 'err', Opts.itype_err]:
msg += "Suppress this error by specifying an unitary 'itype' or giving an 'index' to DictOfSeries."
raise ItypeCastError(msg)
else:
msg += "Silence this warning by specifying an unitary 'itype' or giving an 'index' to DictOfSeries."
warnings.warn(msg, ItypeWarning)
return
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment