We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4cf3978 commit 2a86684Copy full SHA for 2a86684
1 file changed
packages/syft/src/syft/service/dataset/dataset.py
@@ -150,8 +150,6 @@ def _repr_html_(self) -> Any:
150
mock_table_line = itable_template_from_df(df=df.head(5))
151
elif isinstance(self.mock, pd.DataFrame):
152
mock_table_line = itable_template_from_df(df=self.mock.head(5))
153
- elif isinstance(self.mock, list | dict | set | str):
154
- mock_table_line = repr_truncation(self.mock)
155
else:
156
try:
157
mock_table_line = repr_truncation(self.mock)
0 commit comments