Skip to content

Commit

Permalink
fixed type checker error
Browse files Browse the repository at this point in the history
  • Loading branch information
yoid2000 committed Sep 17, 2024
1 parent 726c256 commit aca3ca6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion syndiffix/stitcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def _make_microdata(
for col_name in col_names:
row.append((df[col_name].iloc[i], float(syn.forest.orig_data[col_name].iloc[i])))
microdata.append(row)
return (microdata, (columns))
return (microdata, tuple(columns))


def stitch(df_left: pd.DataFrame, df_right: pd.DataFrame, shared: bool = True) -> pd.DataFrame:
Expand Down

0 comments on commit aca3ca6

Please sign in to comment.