Skip to content

Commit

Permalink
update per comment
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kovalsky committed Nov 4, 2024
1 parent 94f9165 commit fecf4da
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/sempy_labs/_vertipaq.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
from typing import Optional
from sempy._utils._log import log
import sempy_labs._icons as icons
from pathlib import Path


@log
Expand Down Expand Up @@ -980,7 +981,8 @@ def import_vertipaq_analyzer(folder_path: str, file_name: str):
dfs = {}
for file_name in zip_ref.namelist():
df = pd.read_csv(extracted_dir + "/" + file_name)
df_name = file_name[:-4]
file_path = Path(file_name)
df_name = file_path.stem
dfs[df_name] = df

visualize_vertipaq(dfs)
Expand Down

0 comments on commit fecf4da

Please sign in to comment.