mirror of
https://github.com/TheAlgorithms/Python.git
synced 2026-03-13 09:50:19 +08:00
refactor: Indent ... for visual purposes (#7744)
This commit is contained in:
committed by
GitHub
parent
e8915097c4
commit
9bba42eca8
@@ -16,15 +16,15 @@ def proth(number: int) -> int:
|
||||
25
|
||||
>>> proth(0)
|
||||
Traceback (most recent call last):
|
||||
...
|
||||
...
|
||||
ValueError: Input value of [number=0] must be > 0
|
||||
>>> proth(-1)
|
||||
Traceback (most recent call last):
|
||||
...
|
||||
...
|
||||
ValueError: Input value of [number=-1] must be > 0
|
||||
>>> proth(6.0)
|
||||
Traceback (most recent call last):
|
||||
...
|
||||
...
|
||||
TypeError: Input value of [number=6.0] must be an integer
|
||||
"""
|
||||
|
||||
|
||||
Reference in New Issue
Block a user