From e0c8084d0494a2eae8f760dddf58bf4ed4ad0992 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Sat, 7 Oct 2023 17:39:59 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- maths/carmichael_number.py | 1 - 1 file changed, 1 deletion(-) diff --git a/maths/carmichael_number.py b/maths/carmichael_number.py index 921398e5eed4..439ae7f7a538 100644 --- a/maths/carmichael_number.py +++ b/maths/carmichael_number.py @@ -83,7 +83,6 @@ def is_carmichael_number(n: int) -> bool: doctest.testmod() - number = int(input("Enter number: ").strip()) if is_carmichael_number(number): print(f"{number} is a Carmichael Number.")