diff options
| author | Omni Worker <bot@omni.agent> | 2025-11-22 05:27:01 -0500 |
|---|---|---|
| committer | Omni Worker <bot@omni.agent> | 2025-11-22 05:27:01 -0500 |
| commit | 240aabb20f2d8ac5d7f445c2d53afef3426b9d30 (patch) | |
| tree | d2fa1a4d6e500d87a6ba7f75b99b39ea7bb2afce /Biz/PodcastItLater/UI.py | |
| parent | 0ad15e7f3bb47e66314aa49c8ca2c7eef84c0513 (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/UI.py')
| -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 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 ( |
