From f845339383c5fe7bf6c705eec1fe5ee37c87374b Mon Sep 17 00:00:00 2001 From: eslopfer Date: Mon, 30 Jan 2023 12:55:39 +0000 Subject: [PATCH] docs(clean_the_list): rename file to submit --- subjects/devops/clean_the_list/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subjects/devops/clean_the_list/README.md b/subjects/devops/clean_the_list/README.md index 2af63c7b..8928ef17 100644 --- a/subjects/devops/clean_the_list/README.md +++ b/subjects/devops/clean_the_list/README.md @@ -2,7 +2,7 @@ ### Instructions -Create a file `shopping.py` that contains a function `clean_list` which takes and returns a list of strings and performs the following operations on each list item: +Create a file `clean_the_list.py` that contains a function `clean_list` which takes and returns a list of strings and performs the following operations on each list item: - Removes all spaces before and after (but not between words). @@ -19,7 +19,7 @@ Create a file `shopping.py` that contains a function `clean_list` which takes an Here is an example of how to use the `clean_list` function: ```python -import shopping +import clean_the_list shopping_list = ['tomatoes', 'pastas', 'milk', 'salt'] print(shopping.clean_list(shopping_list)) ```