From 8f1e4ff9d01301c0eb8d9b916a38346ecec8937f Mon Sep 17 00:00:00 2001 From: aclist <92275929+aclist@users.noreply.github.com> Date: Tue, 7 Jul 2026 16:32:23 +0900 Subject: [PATCH] chore: drop fixed comment --- dzgui/util/redact.py | 1 - 1 file changed, 1 deletion(-) diff --git a/dzgui/util/redact.py b/dzgui/util/redact.py index a21b2eb..2cc57af 100644 --- a/dzgui/util/redact.py +++ b/dzgui/util/redact.py @@ -3,7 +3,6 @@ import re from typing import Literal api_filter = r"(.*&key=)([^&]*)(.*)" -# FIXME: handle whitespace after directory name ($HOME root) home_filter = r"(/home/)([^\s'\/]*)(.*)" REDACTED = r"\1REDACTED\3" REDACTION_PATTERNS = [api_filter, home_filter]