fix(server): add from __future__ import annotations for Python <3.9 compat

This commit is contained in:
2026-05-10 02:23:13 -04:00
parent d09b891a55
commit 44ab42d80c
2 changed files with 4 additions and 0 deletions

View File

@@ -5,6 +5,8 @@ Accepts all requests, logs every detail (method, path, headers, body),
and responds with configurable pages. Forwards events as JSON to LOG_TARGET if set.
"""
from __future__ import annotations
import json
import logging
import os

View File

@@ -6,6 +6,8 @@ logs every detail (method, path, headers, body, TLS info), and responds
with configurable pages. Forwards events as JSON to LOG_TARGET if set.
"""
from __future__ import annotations
import json
import logging
import os