From a41910cba4941989d459bd6e4a63aefbe6598d26 Mon Sep 17 00:00:00 2001 From: JerrySentry Date: Mon, 6 May 2024 16:46:07 -0400 Subject: [PATCH] mypy 4 --- app/splitter/split.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/splitter/split.py b/app/splitter/split.py index f823617..7c7f41f 100644 --- a/app/splitter/split.py +++ b/app/splitter/split.py @@ -5,4 +5,7 @@ def split_two(a, b): return f"{a} - {b}" def split_three(a, b): - return f"{a} x {b}" \ No newline at end of file + return f"{a} x {b}" + +def split_four(a, b): + return f"{a} / {b}" \ No newline at end of file