From e2cd877dd1e3f9ba18927b92de402d60813126d4 Mon Sep 17 00:00:00 2001 From: Denis Costa Date: Tue, 23 Jul 2024 11:39:53 -0300 Subject: [PATCH] Fix lint --- solutions/beecrowd/1165/1165.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/solutions/beecrowd/1165/1165.py b/solutions/beecrowd/1165/1165.py index 52887a4d..51b1b0d9 100644 --- a/solutions/beecrowd/1165/1165.py +++ b/solutions/beecrowd/1165/1165.py @@ -1,5 +1,6 @@ import math + def is_prime(n): if n == 2: return True @@ -16,4 +17,4 @@ def is_prime(n): for _ in range(n): x = int(input()) - print(f"{x} eh primo" if is_prime(x) else f"{x} nao eh primo") + print(f'{x} eh primo' if is_prime(x) else f'{x} nao eh primo')