diff options
| author | Omni Worker <bot@omni.agent> | 2025-11-22 05:17:01 -0500 |
|---|---|---|
| committer | Omni Worker <bot@omni.agent> | 2025-11-22 05:17:01 -0500 |
| commit | 0ad15e7f3bb47e66314aa49c8ca2c7eef84c0513 (patch) | |
| tree | bde50c60974687152abbe04c9f84553fae7e0476 /Biz/PodcastItLater | |
| parent | 6042e2145478dd966eea697a2286ff3f232acf95 (diff) | |
task: claim t-rWbMpxaBk
Diffstat (limited to 'Biz/PodcastItLater')
| -rw-r--r-- | Biz/PodcastItLater/UI.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Biz/PodcastItLater/UI.py b/Biz/PodcastItLater/UI.py index 5102652..c992c72 100644 --- a/Biz/PodcastItLater/UI.py +++ b/Biz/PodcastItLater/UI.py @@ -422,7 +422,7 @@ class PricingPage(Component[AnyChildren, PricingPageAttrs]): current_tier = user.get("plan_tier", "free") if user else "free" return PageLayout( - cast(Any, html.div( + html.div( # type: ignore[arg-type] html.h2("Simple Pricing", classes=["text-center", "mb-5"]), html.div( # Free Tier @@ -501,7 +501,7 @@ class PricingPage(Component[AnyChildren, PricingPageAttrs]): ], ), action="/upgrade", - method=cast(Any, "get"), + method="get", # type: ignore[arg-type] ) if user and current_tier == "free" else ( |
