From 8c4303b31dc4f2ed5b69e052ba286d003a7af0f5 Mon Sep 17 00:00:00 2001 From: Mark Eaton Date: Wed, 17 Sep 2025 14:45:10 -0400 Subject: [PATCH] style: remove debug print statement from run_pa11y function --- check_wcag_unique.py | 1 - 1 file changed, 1 deletion(-) diff --git a/check_wcag_unique.py b/check_wcag_unique.py index c3a8360..507d310 100644 --- a/check_wcag_unique.py +++ b/check_wcag_unique.py @@ -40,7 +40,6 @@ 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)