From 6f98f415afd70a91ce6424b621d43aff296a434e Mon Sep 17 00:00:00 2001 From: MariyaNazarova <73964830+MariyaNazarova@users.noreply.github.com> Date: Thu, 21 Mar 2024 20:25:51 +0300 Subject: [PATCH] Update max.py --- calculator/max.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/calculator/max.py b/calculator/max.py index 9f063a0..0298b9d 100644 --- a/calculator/max.py +++ b/calculator/max.py @@ -1,6 +1,6 @@ def maximum(a, b): """ Max function - Between a and b + Between a and a """ return max(a, b)