From 3cfb40e2c457c806d981fa3bf1d1a0b333883737 Mon Sep 17 00:00:00 2001 From: floatingbigcat Date: Mon, 5 Aug 2024 08:30:48 +0000 Subject: [PATCH] bug fix --- WizardMath/inference/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WizardMath/inference/util.py b/WizardMath/inference/util.py index da2b714..52bfee6 100644 --- a/WizardMath/inference/util.py +++ b/WizardMath/inference/util.py @@ -245,7 +245,7 @@ def is_equiv(str1, str2, verbose=False): return res except Exception: #return str1 == str2 - res = math_equal(str1,str1) or str1 == str2 + res = math_equal(str1,str2) or str1 == str2 return res class NotEqual: