We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5743981 commit 99d58b0Copy full SHA for 99d58b0
sonar/util/portfolio_helper.py
@@ -32,8 +32,6 @@ def convert_portfolio_json(old_json: dict[str, Any]) -> dict[str, Any]:
32
for key in "children", "portfolios":
33
if key in new_json:
34
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"])
37
if "branches" in old_json:
38
new_json["branches"] = util.dict_to_list(old_json["branches"], "name")
39
return new_json
0 commit comments