Skip to content

Commit 17844af

Browse files
committed
fixed bug removing duplicates
1 parent 0f09039 commit 17844af

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

app/resources/src/cmds/reporter.py

+6
Original file line numberDiff line numberDiff line change
@@ -404,6 +404,12 @@ def main(argv):
404404
df = common.filter_dataframe_multiindex(df, args.filter)
405405

406406

407+
# REMOVE DUPLICATES ----
408+
409+
logging.debug("remove duplicates")
410+
df.drop_duplicates(inplace=True)
411+
412+
407413
# SORT THE COLUMNS AGAIN ----
408414

409415
logging.info("sort again columns")

0 commit comments

Comments
 (0)