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