File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -1857,6 +1857,8 @@ class OrgQuotasIn(BaseModel):
18571857 extraExecMinutes : Optional [int ] = None
18581858 giftedExecMinutes : Optional [int ] = None
18591859
1860+ context : str | None = None
1861+
18601862
18611863# ============================================================================
18621864class Plan (BaseModel ):
Original file line number Diff line number Diff line change @@ -1684,9 +1684,8 @@ async def get_plans(user: User = Depends(user_dep)):
16841684 async def update_quotas (
16851685 quotas : OrgQuotasIn ,
16861686 org : Organization = Depends (org_superuser_or_shared_secret_dep ),
1687- context : str | None = None ,
16881687 ):
1689- await ops .update_quotas (org , quotas , context )
1688+ await ops .update_quotas (org , quotas , quotas . context )
16901689
16911690 return {"updated" : True }
16921691
You can’t perform that action at this time.
0 commit comments