Skip to content

Commit

Permalink
revert bad markup (#94) (#95)
Browse files Browse the repository at this point in the history
  • Loading branch information
sunnycarter authored Sep 27, 2023
1 parent 1276d0b commit 69b1227
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/aosm/azext_aosm/deploy/pre_deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,9 @@ def ensure_resource_group_exists(self, resource_group_name: str) -> None:
logger.info("RG %s not found. Create it.", resource_group_name)
print(f"Creating resource group {resource_group_name}.")
rg_params: ResourceGroup = ResourceGroup(location=self.config.location)
poller = self.api_clients.resource_client.resource_groups.create_or_update(
self.api_clients.resource_client.resource_groups.create_or_update(
resource_group_name, rg_params
)
LongRunningOperation(self.cli_ctx, "Creating resource group...")(poller)
else:
print(f"Resource group {resource_group_name} exists.")
self.api_clients.resource_client.resource_groups.get(resource_group_name)
Expand Down

0 comments on commit 69b1227

Please sign in to comment.