Skip to content

Commit

Permalink
updated per comments
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kovalsky committed Oct 21, 2024
1 parent 7fdb258 commit bc78496
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sempy_labs/_capacities.py
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ def update_fabric_capacity(
if sku is not None:
payload["sku"]["name"] = sku
if admin_members is not None:
payload["properties"]["administration"]["members"] = admin_members
payload["properties"] = {"administration": {"members": admin_members}}
if tags is not None:
payload["tags"] = tags

Expand Down Expand Up @@ -652,7 +652,7 @@ def create_resource_group(

from azure.mgmt.resource import ResourceManagementClient

azure_token, credential, headers = get_azure_token_credentials(
azure_token, credential, headers = _get_azure_token_credentials(
key_vault_uri=key_vault_uri,
key_vault_tenant_id=key_vault_tenant_id,
key_vault_client_id=key_vault_client_id,
Expand Down

0 comments on commit bc78496

Please sign in to comment.