summaryrefslogtreecommitdiff
path: root/Biz/PodcastItLater
diff options
context:
space:
mode:
authorOmni Worker <bot@omni.agent>2025-11-22 05:27:01 -0500
committerOmni Worker <bot@omni.agent>2025-11-22 05:27:01 -0500
commit240aabb20f2d8ac5d7f445c2d53afef3426b9d30 (patch)
treed2fa1a4d6e500d87a6ba7f75b99b39ea7bb2afce /Biz/PodcastItLater
parent0ad15e7f3bb47e66314aa49c8ca2c7eef84c0513 (diff)
Fix mypy errors in Biz/PodcastItLater/UI.py
Amp-Thread-ID: https://ampcode.com/threads/T-9e42644b-2a21-40e9-923c-e63f9026b0a6 Co-authored-by: Amp <amp@ampcode.com>
Diffstat (limited to 'Biz/PodcastItLater')
-rw-r--r--Biz/PodcastItLater/UI.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Biz/PodcastItLater/UI.py b/Biz/PodcastItLater/UI.py
index c992c72..e212f83 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(
- html.div( # type: ignore[arg-type]
+ cast(Any, 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="get", # type: ignore[arg-type]
+ attrs={"method": "get"}, # type: ignore[arg-type]
)
if user and current_tier == "free"
else (