From 31c6527b75a87a37faec0b539400df616acdd301 Mon Sep 17 00:00:00 2001 From: IlyaChaban <54276624+IlyaChaban@users.noreply.github.com> Date: Thu, 6 Oct 2022 21:49:27 +0200 Subject: [PATCH] Update 03_fraction_class.py Trying issues for the first time There were comment that made me confused about this function functionality --- resources/tasks/03_fraction_class.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/tasks/03_fraction_class.py b/resources/tasks/03_fraction_class.py index 6adca7d..c5dabb5 100644 --- a/resources/tasks/03_fraction_class.py +++ b/resources/tasks/03_fraction_class.py @@ -31,7 +31,7 @@ def __eq__(self, other): def __lt__(self, other): # magic method for comparison `<` # compare two fractions if the first one is less than second one - # example 1/3 <= 1/2 + # example 1/3 < 1/2 pass def __le__(self, other):