Skip to content

Commit 9b3a5de

Browse files
committed
chore(code) small polish on organization quotas
1 parent 2bbf0b8 commit 9b3a5de

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cloudfoundry_client/v3/organization_quotas.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,6 @@ class OrganizationQuotaManager(EntityManager[Entity]):
3737
def __init__(self, target_endpoint: str, client: "CloudFoundryClient"):
3838
super().__init__(target_endpoint, client, "/v3/organization_quotas")
3939

40-
def remove(self, guid: str, asynchronous: bool = True) -> str | None:
41-
return super()._remove(guid, asynchronous)
42-
4340
def create(
4441
self,
4542
name: str,
@@ -71,6 +68,9 @@ def apply_to_organizations(self, guid: str, organizations: ToManyRelationship) -
7168
)
7269
)
7370

71+
def remove(self, guid: str, asynchronous: bool = True) -> str | None:
72+
return super()._remove(guid, asynchronous)
73+
7474
def _asdict(
7575
self,
7676
name: str,

0 commit comments

Comments
 (0)