Skip to content
This repository has been archived by the owner on Nov 1, 2023. It is now read-only.

Commit

Permalink
Formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
nharper285 committed Dec 15, 2022
1 parent 1d51047 commit 5e3f783
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/deployment/deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,9 @@ def update_existing_app_registration(

# find any identifier URIs that need updating
identifier_uris: List[str] = app["identifierUris"]
updated_identifier_uris = list(set(identifier_uris) | self.get_identifier_url())
updated_identifier_uris = list(
set(identifier_uris) | set([self.get_identifier_url()])
)
if len(updated_identifier_uris) > len(identifier_uris):
update_properties["identifierUris"] = updated_identifier_uris

Expand Down

0 comments on commit 5e3f783

Please sign in to comment.