We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f3ac9e commit c0786eeCopy full SHA for c0786ee
src/sempy_labs/_model_bpa_bulk.py
@@ -82,7 +82,7 @@ def run_model_bpa_bulk(
82
if isinstance(workspace, str):
83
workspace = [workspace]
84
85
- dfW = fabric.list_workspaces()
+ dfW = fabric.list_workspaces("type ne 'AdminInsights'")
86
if workspace is None:
87
dfW_filt = dfW.copy()
88
else:
@@ -150,7 +150,7 @@ def run_model_bpa_bulk(
150
151
if df.empty:
152
df = bpa_df
153
- if not bpa_df.empty:
+ elif not bpa_df.empty:
154
df = pd.concat([df, bpa_df], ignore_index=True)
155
print(
156
f"{icons.green_dot} Collected Model BPA stats for the '{dataset_name}' semantic model within the '{wksp}' workspace."
0 commit comments