From 4447d129f9d6f04a3fec301bfce2d7f5927be771 Mon Sep 17 00:00:00 2001 From: Curs3d Date: Thu, 2 Jun 2016 20:57:40 +0300 Subject: [PATCH] Updated 3. Code style (markdown) --- 3.-Code-style.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/3.-Code-style.md b/3.-Code-style.md index 0bd5bb7..2e72a89 100644 --- a/3.-Code-style.md +++ b/3.-Code-style.md @@ -10,8 +10,8 @@ Only use single-quotes when the string contains double-quotes that would need to Do not use camelCase for variable or function names! Use under_score naming. camelCase is okay when used like `import foo.bar.camelCase as camelCase`. -## Aligning variable assignments -In case you have multiple variable assignments, align the equals sign: +## Aligning variable assignments **(NOTE: QUESTIONABLE SECTION)** +In case you have multiple variable assignments, align the equals sign: ```Python # bad