Skip to content

Commit

Permalink
fix default excluded account value
Browse files Browse the repository at this point in the history
  • Loading branch information
bmorrissirromb authored Nov 30, 2023
1 parent 4d85ac5 commit a247359
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rdk/rdk.py
Original file line number Diff line number Diff line change
Expand Up @@ -2217,7 +2217,7 @@ def deploy_organization(self):

if self.args.excluded_accounts or "ExcludedAccounts" in rule_params:
combined_excluded_accounts_set = set(
rule_params.get("ExcludedAccounts", []).split(",") + self.args.excluded_accounts
rule_params.get("ExcludedAccounts", "").split(",") + self.args.excluded_accounts
)
combined_excluded_accounts_str = ",".join(combined_excluded_accounts_set)
else:
Expand Down

0 comments on commit a247359

Please sign in to comment.