We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In [10]: from ibis.interactive import * In [11]: s = ibis.null("date") In [12]: s
raises an exception:
│ …/ibis/expr/types/pretty.py:139 in _ │ │ │ │ 136 @format_values.register(dt.Date) │ │ 137 def _(dtype, values, **fmt_kwargs): │ │ 138 │ dates = [v.date() if isinstance(v, datetime.datetime) else v for v in values] │ │ ❱ 139 │ return [Text.styled(d.isoformat(), "magenta") for d in dates] │ │ 140 │ │ 141 │ │ 142 @format_values.register(dt.Time) │ ╰──────────────────────────────────────────────────────────────────────────────────────────────────╯ AttributeError: 'NoneType' object has no attribute 'isoformat'
main @ 12a45cf
main
No response
The text was updated successfully, but these errors were encountered:
fix(interactive-repr): ensure that null scalars can be repr'd interac…
5f1c75a
…tively (#10784) Fixes #10780.
Successfully merging a pull request may close this issue.
What happened?
raises an exception:
What version of ibis are you using?
main
@ 12a45cfWhat backend(s) are you using, if any?
No response
Relevant log output
Code of Conduct
The text was updated successfully, but these errors were encountered: