From 6325282136cc97e41193346a4600380f2a84224f Mon Sep 17 00:00:00 2001 From: Moealfadil <142026026+Moealfadil@users.noreply.github.com> Date: Sat, 28 Dec 2024 19:29:53 +0200 Subject: [PATCH] black fixes --- solutions/tests/test_IsPrime.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/solutions/tests/test_IsPrime.py b/solutions/tests/test_IsPrime.py index c8dd2a8df..6f5fd4a9e 100644 --- a/solutions/tests/test_IsPrime.py +++ b/solutions/tests/test_IsPrime.py @@ -71,5 +71,7 @@ def test_not_integer(self): actual = IsPrime(1.5) expected = "invalid input" self.assertEqual(actual, expected) + + if __name__ == "__main__": unittest.main()