From d99d965046f42279854f645ba7f9ab09b8d06064 Mon Sep 17 00:00:00 2001 From: Denis Costa Date: Fri, 20 Sep 2024 12:35:13 -0300 Subject: [PATCH] Fix lint --- solutions/beecrowd/2633/2633.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/solutions/beecrowd/2633/2633.py b/solutions/beecrowd/2633/2633.py index 09f9c161..780419e3 100644 --- a/solutions/beecrowd/2633/2633.py +++ b/solutions/beecrowd/2633/2633.py @@ -17,7 +17,7 @@ for i in range(n): if i > 0 and i < n: - print(" ", end="") - print(heapq.heappop(sorted_ingredients)[1], end="") + print(' ', end='') + print(heapq.heappop(sorted_ingredients)[1], end='') print()