Skip to content

Commit

Permalink
fixed duplication
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kovalsky committed Dec 4, 2024
1 parent 45d28bc commit 91a0ec3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sempy_labs/_dax.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def get_dax_query_dependencies(
]
final_df = final_df.drop_duplicates().reset_index(drop=True)
final_df = final_df.rename(columns={"Table": "Table Name", "Object": "Column Name"})
final_df.drop(columns=["Object Type"])
final_df.drop(columns=["Object Type"], inplace=True)

if not show_vertipaq_stats:
return final_df
Expand Down

0 comments on commit 91a0ec3

Please sign in to comment.