[pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci
This commit is contained in:
pre-commit-ci[bot] 2023-08-19 18:25:31 +00:00
parent 37e33918e8
commit 25921bd37c

View File

@ -7,6 +7,7 @@ https://en.wikipedia.org/wiki/Binary_number
https://en.wikipedia.org/wiki/Octal
"""
def octal_to_binary(octal_number: str) -> str:
"""
Convert an Octal number to Binary.
@ -49,4 +50,5 @@ def octal_to_binary(octal_number: str) -> str:
if __name__ == "__main__":
import doctest
doctest.testmod()