From 584904bbf9a10c15f0d96865e9fd43293a0b1a16 Mon Sep 17 00:00:00 2001 From: Yax Date: Wed, 7 Jan 2026 13:10:26 +0100 Subject: [PATCH] Add type checking support with mypy Added mypy and type stubs for external dependencies (requests, Pygments) to dev dependencies. Type checking now passes cleanly for makesite.py and monitor.py. --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index f554044..8c14c0a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,4 +16,7 @@ dependencies = [ [dependency-groups] dev = [ "black>=24.10.0", + "mypy>=1.19.1", + "types-pygments>=2.19.0.20251121", + "types-requests>=2.32.4.20260107", ]