fix: adds better boolean check for DataFrame and fixes output display (#4933)

* feat: Add DataFrameInput to inputs module

* feat: add DataFrame support and refactor array processing

* feat: add truth value testing for DataFrame class

* refactor: remove Python 2 compatibility method from DataFrame class
This commit is contained in:
Gabriel Luiz Freitas Almeida 2024-11-28 17:58:50 -03:00 committed by GitHub
commit c99f2a35bd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 22 additions and 9 deletions

View file

@ -1,6 +1,7 @@
from .inputs import (
BoolInput,
CodeInput,
DataFrameInput,
DataInput,
DefaultPromptField,
DictInput,
@ -51,4 +52,5 @@ __all__ = [
"SliderInput",
"StrInput",
"TableInput",
"DataFrameInput",
]