From a7487162b8970b71628bf69437de5ff6ed0c80f9 Mon Sep 17 00:00:00 2001 From: eslopfer Date: Wed, 25 Jan 2023 17:53:55 +0000 Subject: [PATCH] chore(shopping): move to right repository --- sh/tests/solutions/shopping.py | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 sh/tests/solutions/shopping.py diff --git a/sh/tests/solutions/shopping.py b/sh/tests/solutions/shopping.py deleted file mode 100644 index 75c13af5..00000000 --- a/sh/tests/solutions/shopping.py +++ /dev/null @@ -1,9 +0,0 @@ -def clean_list(shopping_list): - if shopping_list: - cleaned_list = ([f"{index + 1}x/ {item.strip().capitalize()}" - for index, item in enumerate(shopping_list)]) - if "milk" not in cleaned_list: - cleaned_list.append("milk") - return cleaned_list - else: - return []