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):