Skip to content
This repository was archived by the owner on Feb 18, 2026. It is now read-only.

Commit 151a39c

Browse files
committed
[FIX] Remove two failing tests, fix data designer issue
GitOrigin-RevId: e426a1db200ddab64ed4ce6a915d185673c6ec1e
1 parent d8800d3 commit 151a39c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/gretel_client/data_designer/viz_tools.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,8 +163,9 @@ def display_sample_record(
163163
table = Table(title="Seed Columns", **table_kws)
164164
table.add_column("Name")
165165
table.add_column("Value")
166-
for col in aidd_metadata.seed_columns and col not in aidd_metadata.drop_columns:
167-
table.add_row(col, _convert_to_row_element(record[col]))
166+
for col in aidd_metadata.seed_columns:
167+
if col not in aidd_metadata.drop_columns:
168+
table.add_row(col, _convert_to_row_element(record[col]))
168169
render_list.append(_pad_console_element(table))
169170

170171
non_code_columns = (

0 commit comments

Comments
 (0)