idk why these weren't committed

This commit is contained in:
2026-03-06 12:48:02 -05:00
parent a982e701ed
commit 1fb6ebc4d0
35 changed files with 17 additions and 85 deletions

View File

@@ -1,6 +1,5 @@
from __future__ import annotations
import requests # type: ignore[import-untyped]
import json
import time
from typing import Any
@@ -27,7 +26,7 @@ class ApiHookClient:
if response.status_code == 200:
return response.json()
return None
except Exception as e:
except Exception:
# Silently ignore connection errors unless we are in a wait loop
return None