Skip to content

Commit

Permalink
Fixed formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
k-a-il committed Jan 28, 2025
1 parent 7858417 commit 964600b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion moto/organizations/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,9 @@ def delete_organization(self) -> None:

def list_roots(self) -> Dict[str, Any]:
if self.org:
return dict(Roots=[ou.describe() for ou in self.ou if isinstance(ou, FakeRoot)])
return dict(
Roots=[ou.describe() for ou in self.ou if isinstance(ou, FakeRoot)]
)

if self.account_id in organizations_backends.master_accounts:
master_account_id, partition = organizations_backends.master_accounts[
Expand Down

0 comments on commit 964600b

Please sign in to comment.