diff --git a/solutions/grading_system.py b/solutions/grading_system.py index 4335e5fa2..fc9e4148a 100644 --- a/solutions/grading_system.py +++ b/solutions/grading_system.py @@ -44,9 +44,9 @@ def grading_system(score: int | float) -> str: """ - assert isinstance( - score, (int, float) - ), "The score is neither an integer nor a float." + assert isinstance(score, (int, float)), ( + "The score is neither an integer nor a float." + ) assert score >= 0, "Score is less than 0" assert score <= 100, "Score is greater than 100"