Skip to content

Commit 616dcd4

Browse files
committed
Fix linting errors: remove whitespace and fix line length
- Fix E501: Break long line in docstring to stay within 88 chars - Fix W293: Remove trailing whitespace from blank lines
1 parent f1817b5 commit 616dcd4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

maths/division.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ def divide_numbers(a: float, b: float) -> float:
4242
>>> divide_numbers(10, 0)
4343
Traceback (most recent call last):
4444
...
45-
ValueError: Cannot divide by zero. Please provide a non-zero denominator.
45+
ValueError: Cannot divide by zero. Please provide a non-zero
46+
denominator.
4647
4748
>>> divide_numbers(0, 5)
4849
0.0

0 commit comments

Comments
 (0)