Skip to content

Commit f9651c9

Browse files
committed
Merge branch 'm-kovalsky/rptwrapperannotations'
2 parents a917775 + e36c245 commit f9651c9

File tree

5 files changed

+336
-171
lines changed

5 files changed

+336
-171
lines changed

src/sempy_labs/_generate_semantic_model.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -308,6 +308,7 @@ def deploy_semantic_model(
308308
dataset=target_dataset,
309309
bim_file=bim,
310310
workspace=target_workspace,
311+
overwrite=overwrite,
311312
)
312313
# Update the semantic model if the model exists
313314
else:

src/sempy_labs/_list_functions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1371,7 +1371,7 @@ def list_report_semantic_model_objects(
13711371
Shows a list of semantic model objects (i.e. columns, measures, hierarchies) used in all reports which feed data from
13721372
a given semantic model.
13731373
1374-
Requirement: Reports must be in the PBIR format.
1374+
Note: As with all functions which rely on the ReportWrapper, this function requires the report(s) to be in the 'PBIR' format.
13751375
13761376
Parameters
13771377
----------

src/sempy_labs/report/_report_bpa.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ def run_report_bpa(
2929
):
3030
"""
3131
Displays an HTML visualization of the results of the Best Practice Analyzer scan for a report.
32+
Note: As with all functions which rely on the ReportWrapper, this function requires the report to be in the 'PBIR' format.
3233
3334
Parameters
3435
----------

src/sempy_labs/report/_report_list_functions.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ def list_unused_objects_in_reports(
1313
) -> pd.DataFrame:
1414
"""
1515
Shows a list of all columns in the semantic model which are not used in any related Power BI reports (including dependencies).
16+
Note: As with all functions which rely on the ReportWrapper, this function requires the report to be in the 'PBIR' format.
1617
1718
Parameters
1819
----------
@@ -55,6 +56,7 @@ def _list_all_report_semantic_model_objects(
5556
) -> pd.DataFrame:
5657
"""
5758
Shows a unique list of all semantic model objects (columns, measures, hierarchies) which are used in all reports which leverage the semantic model.
59+
Note: As with all functions which rely on the ReportWrapper, this function requires the report to be in the 'PBIR' format.
5860
5961
Parameters
6062
----------

0 commit comments

Comments
 (0)