Skip to content

Commit

Permalink
Renaming in comments
Browse files Browse the repository at this point in the history
  • Loading branch information
louisdorard committed May 16, 2024
1 parent dcc2764 commit 485f25f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dss-plugin-visual-edit/python-lib/commons.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def get_dataframe(mydataset):
return mydataset_df


# Used by Pivot recipe and by DataEditor for getting edited cells
# Used by Replay recipe and by DataEditor for getting edited cells


def replay_edits(editlog_ds, primary_keys, editable_column_names):
Expand Down Expand Up @@ -178,7 +178,7 @@ def get_original_df(original_ds):
)


# Used by Merge recipe and by DataEditor for getting edited data
# Used by Apply recipe and by DataEditor for getting edited data
def apply_edits_from_df(original_ds, edits_df):
original_df, primary_keys, display_columns, editable_columns = get_original_df(
original_ds
Expand Down Expand Up @@ -224,7 +224,7 @@ def apply_edits_from_df(original_ds, edits_df):
if not edits_df.index.name: # if index has no name, i.e. it's a range index
edits_df.set_index(primary_keys, inplace=True)

# "Replay" edits: Join and Merge
# Join and "Merge"
###

# Join -> this adds _value_last columns
Expand Down

0 comments on commit 485f25f

Please sign in to comment.