From 69991555fc83083250623c178e5ee8edbe0577d6 Mon Sep 17 00:00:00 2001 From: Bama Charan Chhandogi Date: Fri, 11 Aug 2023 17:31:43 +0530 Subject: [PATCH] mention return type --- conversions/octal_to_binary.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conversions/octal_to_binary.py b/conversions/octal_to_binary.py index 7b1b1aca9..c24fed4e2 100644 --- a/conversions/octal_to_binary.py +++ b/conversions/octal_to_binary.py @@ -1,4 +1,4 @@ -def octal_to_binary(octal_number): +def octal_to_binary(octal_number: str) -> str: """ /** * Converts any Octal Number to a Binary Number