summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Sima <ben@bensima.com>2025-11-22 20:57:29 -0500
committerBen Sima <ben@bensima.com>2025-11-22 20:57:29 -0500
commit71ffdbba2c1f0cb30d76fa4d8d74736b843c19ca (patch)
tree9dff0d80dcc9cdd224fc9dbe662a9d54f4280623
parent58bc3928c09e46d6c66e13237a57eeb371ecfd48 (diff)
feat: implement t-1o2cbf1fzh2
-rw-r--r--Biz/PodcastItLater/UI.py9
-rw-r--r--pyproject.toml5
2 files changed, 5 insertions, 9 deletions
diff --git a/Biz/PodcastItLater/UI.py b/Biz/PodcastItLater/UI.py
index 0f54894..905aba4 100644
--- a/Biz/PodcastItLater/UI.py
+++ b/Biz/PodcastItLater/UI.py
@@ -4,15 +4,6 @@ PodcastItLater Shared UI Components.
Common UI components and utilities shared across web pages.
"""
-
-
-
-
-
-
-
-
-
# : out podcastitlater-ui
# : dep ludic
import ludic.html as html
diff --git a/pyproject.toml b/pyproject.toml
index 15ca3c4..ea58f64 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -2,6 +2,11 @@
strict = true
implicit_reexport = true
+[[tool.mypy.overrides]]
+module = "Biz.PodcastItLater.Core"
+ignore_missing_imports = true
+disable_error_code = "import-untyped"
+
[tool.ruff]
exclude = ["_", ".git"]
line-length = 80