refactor: Indent ... for visual purposes (#7744)

This commit is contained in:
Caeden Perelli-Harris 2022-10-27 18:42:30 +01:00 committed by GitHub
parent e8915097c4
commit 9bba42eca8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
46 changed files with 134 additions and 134 deletions

View File

@ -9,11 +9,11 @@ The function below will convert any binary string to the octal equivalent.
>>> bin_to_octal("")
Traceback (most recent call last):
...
...
ValueError: Empty string was passed to the function
>>> bin_to_octal("a-1")
Traceback (most recent call last):
...
...
ValueError: Non-binary value was passed to the function
"""