From 2f21d77bfe7b02b6873a131edfd507bd0da8ae0d Mon Sep 17 00:00:00 2001 From: HitBlast Date: Thu, 27 Jun 2024 20:28:45 +0600 Subject: [PATCH] tried implementing a crazy algorithm so reverting --- avro/main.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/avro/main.py b/avro/main.py index b7b8bf0..39923fe 100755 --- a/avro/main.py +++ b/avro/main.py @@ -280,9 +280,6 @@ def _find_in_remap(text: str, *, reversed: bool = False) -> Optional[str]: else: text = text.replace(value, key) if (value := value.lower()) in text.lower() else text - if previous_text != text: - break - return text if previous_text != text else None