Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
JimMadge committed Nov 29, 2024
1 parent da382e0 commit d73704a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions data_safe_haven/infrastructure/programs/sre/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,9 @@ def __init__(
}
],
# This is the URI of the automatically created fileService resource
resource_uri=Output.concat(storage_account_data_configuration.id, "/fileServices/default"),
resource_uri=Output.concat(
storage_account_data_configuration.id, "/fileServices/default"
),
workspace_id=props.log_analytics_workspace.id,
)
# Set up a private endpoint for the configuration data storage account
Expand Down Expand Up @@ -697,7 +699,9 @@ def __init__(
}
],
# This is the URI of the automatically created fileService resource
resource_uri=Output.concat(storage_account_data_private_user.id, "/fileServices/default"),
resource_uri=Output.concat(
storage_account_data_private_user.id, "/fileServices/default"
),
workspace_id=props.log_analytics_workspace.id,
)
storage.FileShare(
Expand Down

0 comments on commit d73704a

Please sign in to comment.