Skip to content
This repository was archived by the owner on Jun 13, 2025. It is now read-only.

Commit cc4f90d

Browse files
committed
Fix linting
1 parent 1922f1e commit cc4f90d

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

billing/helpers.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@
1919

2020

2121
def on_enterprise_plan(owner: Owner) -> bool:
22-
return settings.IS_ENTERPRISE or (owner.plan in ENTERPRISE_CLOUD_USER_PLAN_REPRESENTATIONS.keys())
22+
return settings.IS_ENTERPRISE or (
23+
owner.plan in ENTERPRISE_CLOUD_USER_PLAN_REPRESENTATIONS.keys()
24+
)
2325

2426

2527
def available_plans(owner: Optional[Owner]) -> List[dict]:

0 commit comments

Comments
 (0)