-
Notifications
You must be signed in to change notification settings - Fork 1
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
ft/dataframe_source #43
Conversation
""" | ||
return ( | ||
f"DataFrameDataSource(dataframe with {self.dataframe.shape[0]} rows" | ||
f" and {self.dataframe.shape[1]} columns." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Falta un paréntesis de cierre.
tests/test_dataframe_source.py
Outdated
def test_str(dataframe_source): | ||
assert ( | ||
str(dataframe_source) | ||
== "DataFrameDataSource(dataframe with 4 rows and 3 columns." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Falta un paréntesis de cierre.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Falta un paréntesis de cierre.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No description provided.