From 1cef3d284760e814e4b7a8a39da072efa220f4a8 Mon Sep 17 00:00:00 2001 From: Mert Taner Date: Mon, 13 Jun 2022 20:52:59 +0300 Subject: [PATCH] type error fix #147 --- TechTopics/CodingBestPractices/coding_best_practices.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TechTopics/CodingBestPractices/coding_best_practices.md b/TechTopics/CodingBestPractices/coding_best_practices.md index ecd747e0..ca0223cc 100644 --- a/TechTopics/CodingBestPractices/coding_best_practices.md +++ b/TechTopics/CodingBestPractices/coding_best_practices.md @@ -127,7 +127,7 @@ def process_numbers(input): return [{'square': n*n, 'cube': n*n*n} for n in [i*i for i in input if i%2==0] if n<20] ``` -return live above is so tricky and cryptic that it could give a headache to a person reading that code +return line above is so tricky and cryptic that it could give a headache to a person reading that code *More Readable Code:* ```