Skip to content

Commit 99d58b0

Browse files
committed
Remove perms convestion (done in the generic conversion code)
1 parent 5743981 commit 99d58b0

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

sonar/util/portfolio_helper.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@ def convert_portfolio_json(old_json: dict[str, Any]) -> dict[str, Any]:
3232
for key in "children", "portfolios":
3333
if key in new_json:
3434
new_json[key] = convert_portfolios_json(new_json[key])
35-
if "permissions" in old_json:
36-
new_json["permissions"] = util.perms_to_list(old_json["permissions"])
3735
if "branches" in old_json:
3836
new_json["branches"] = util.dict_to_list(old_json["branches"], "name")
3937
return new_json

0 commit comments

Comments
 (0)