From 99a196f3868e3ef1e07bb724cd1099de2460c4e3 Mon Sep 17 00:00:00 2001 From: ongsici Date: Mon, 28 Oct 2024 15:15:13 +0000 Subject: [PATCH] chore: fix typo --- src/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.py b/src/app.py index a5604df..d57686d 100644 --- a/src/app.py +++ b/src/app.py @@ -12,7 +12,7 @@ def is_cube(n): def process_query(input): - if "multipled by" in input: + if "multiplied by" in input: new_input = input.replace("?", "") value1 = int(new_input.split(" ")[2]) value2 = int(new_input.split(" ")[5])