Skip to content

Commit

Permalink
fixed list_deployment_pipeline_stage_items
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kovalsky committed Dec 24, 2024
1 parent 3c9f579 commit 2b1fcc9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/sempy_labs/_deployment_pipelines.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def list_deployment_pipeline_stage_items(
raise ValueError(
f"{icons.red_dot} The '{stage_name}' stage does not exist within the '{deployment_pipeline}' deployment pipeline."
)
stage_id = dfPS_filt["Deployment Pipeline Stage ID"].iloc[0]
stage_id = dfPS_filt["Deployment Pipeline Stage Id"].iloc[0]

client = fabric.FabricRestClient()
response = client.get(
Expand Down
2 changes: 1 addition & 1 deletion src/sempy_labs/_helper_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -975,7 +975,7 @@ def resolve_deployment_pipeline_id(deployment_pipeline: str) -> UUID:
Returns
-------
UUID
uuid.UUID
The deployment pipeline Id.
"""

Expand Down

0 comments on commit 2b1fcc9

Please sign in to comment.