From e0098733fd9bf412671c5d24ad444c73d8658a04 Mon Sep 17 00:00:00 2001 From: Mark Eaton Date: Wed, 17 Sep 2025 14:32:39 -0400 Subject: [PATCH] fix: add debug print for pa11y JSON output type in check_wcag_unique.py --- check_wcag_unique.py | 1 + 1 file changed, 1 insertion(+) diff --git a/check_wcag_unique.py b/check_wcag_unique.py index 507d310..c3a8360 100644 --- a/check_wcag_unique.py +++ b/check_wcag_unique.py @@ -40,6 +40,7 @@ def run_pa11y(url: str) -> List[dict]: return [] try: + print(type(result.stdout)) return json.loads(result.stdout) except json.JSONDecodeError: print(f"[WARN] Could not parse pa11y JSON output for {url}", file=sys.stderr)