From 8219f446598065234145ad14bcf7a7a8f3d66d82 Mon Sep 17 00:00:00 2001 From: Sean Whalen <44679+seanthegeek@users.noreply.github.com> Date: Tue, 21 Jul 2026 22:06:22 -0400 Subject: [PATCH] Reflow create_indexes comments flagged by Copilot The line wrap placed "#169" directly after the comment marker, so the raw source read "# #169;". Reword so the issue reference stays on one line. Co-Authored-By: Claude Fable 5 --- parsedmarc/elastic.py | 4 ++-- parsedmarc/opensearch.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/parsedmarc/elastic.py b/parsedmarc/elastic.py index 400dfadd..bf100428 100644 --- a/parsedmarc/elastic.py +++ b/parsedmarc/elastic.py @@ -471,8 +471,8 @@ def create_indexes(names: list[str], settings: dict[str, Any] | None = None): # Deliberately no Index.document() registration: Kibana/OpenSearch # Dashboards/Grafana cannot terms-aggregate fields inside a # `nested` mapping, so the dynamic `object` mapping produced by a - # bare create is load-bearing for the shipped dashboards (issue - # #169; see the *_combined fields on _AggregateReportDoc). + # bare create is load-bearing for the shipped dashboards. See + # issue #169 and the *_combined fields on _AggregateReportDoc. if not index.exists(): logger.debug("Creating Elasticsearch index: {0}".format(name)) if effective_settings: diff --git a/parsedmarc/opensearch.py b/parsedmarc/opensearch.py index 1bb29e75..828358d0 100644 --- a/parsedmarc/opensearch.py +++ b/parsedmarc/opensearch.py @@ -388,8 +388,8 @@ def create_indexes(names: list[str], settings: dict[str, Any] | None = None): # Deliberately no Index.document() registration: Kibana/OpenSearch # Dashboards/Grafana cannot terms-aggregate fields inside a # `nested` mapping, so the dynamic `object` mapping produced by a - # bare create is load-bearing for the shipped dashboards (issue - # #169; see the *_combined fields on _AggregateReportDoc). + # bare create is load-bearing for the shipped dashboards. See + # issue #169 and the *_combined fields on _AggregateReportDoc. if not index.exists(): logger.debug("Creating OpenSearch index: {0}".format(name)) if settings is None: