Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
fcollman committed Jul 19, 2024
1 parent 690534f commit d0a038d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions materializationengine/blueprints/client/api2.py
Original file line number Diff line number Diff line change
Expand Up @@ -1050,7 +1050,7 @@ def preprocess_dataframe(df, table_name, aligned_volume_name, column_names):
unique_vals[tag] = df[tag].unique()
unique_vals[tag] = unique_vals[tag][~pd.isnull(unique_vals[tag])]

if len(tags)>0:
if len(tags) > 0:
# find all the duplicate values across columns
vals, counts = np.unique(
np.concatenate([v for v in unique_vals.values()]), return_counts=True
Expand Down Expand Up @@ -1787,7 +1787,6 @@ def get(
)

if version == 0:
version =
mat_db_name = f"{aligned_volume_name}"
else:
mat_db_name = f"{datastack_name}__mat{version}"
Expand Down

0 comments on commit d0a038d

Please sign in to comment.