From 5ae7270f8f3ae6c5c8f3540e3d04fdf39237ea96 Mon Sep 17 00:00:00 2001 From: waynee95 <32349344+waynee95@users.noreply.github.com> Date: Tue, 8 Aug 2023 00:37:38 +0200 Subject: [PATCH] Fix wrong __str__ method for LtE --- utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils.py b/utils.py index 8399df4..5271f17 100644 --- a/utils.py +++ b/utils.py @@ -431,7 +431,7 @@ def str_LtE(self): return '<=' -LtE.__str__ = str_Lt +LtE.__str__ = str_LtE def repr_LtE(self):