From 2107f3994a7251e57f9d1365d3a7ec97f6e549f1 Mon Sep 17 00:00:00 2001 From: L4XB Date: Thu, 10 Sep 2026 09:37:41 +0200 Subject: [PATCH] docs(anonymizer): drop the undefined NONE member from the ConflictResolutionStrategy docstring --- .../presidio_anonymizer/entities/conflict_resolution_strategy.py | 1 - 1 file changed, 1 deletion(-) diff --git a/presidio-anonymizer/presidio_anonymizer/entities/conflict_resolution_strategy.py b/presidio-anonymizer/presidio_anonymizer/entities/conflict_resolution_strategy.py index 3b4a076458..f18385827f 100644 --- a/presidio-anonymizer/presidio_anonymizer/entities/conflict_resolution_strategy.py +++ b/presidio-anonymizer/presidio_anonymizer/entities/conflict_resolution_strategy.py @@ -12,7 +12,6 @@ class ConflictResolutionStrategy(Enum): between similar or contained entities. REMOVE_INTERSECTIONS: Effectively resolves both intersection conflicts among entities and default strategy conflicts. - NONE: No conflict resolution will be performed. """ MERGE_SIMILAR_OR_CONTAINED = "merge_similar_or_contained"