mentioned return type

This commit is contained in:
BamaCharanChhandogi 2023-08-13 15:12:42 +05:30
parent 7ad4dd07a2
commit 7b0ac718b0

View File

@ -1,4 +1,4 @@
def octal_to_binary(octal_number):
def octal_to_binary(octal_number: str) -> str:
"""
Convert an octal number to binary.