From 0f121488543a78674e5944e4b69eff42128946ab Mon Sep 17 00:00:00 2001 From: Fredrik Ekre Date: Fri, 5 Jul 2024 08:47:59 +0200 Subject: [PATCH] Update some items in TODO --- TODO.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/TODO.md b/TODO.md index 930849f..18681d6 100644 --- a/TODO.md +++ b/TODO.md @@ -1,15 +1,15 @@ # TODOs, notes, and various thoughts ## TODOs - - [ ] `=` and `\in` should be `in` in for loops - - [ ] Space after `,` in tuples, function calls, function definitions, `{}` etc. - - [ ] No leading/trailing space in tuples etc `( a, b )` -> `(a, b)` + - [x] `=` and `\in` should be `in` in for loops + - [x] Space after `,` in tuples, function calls, function definitions, `{}` etc. + - [x] No leading/trailing space in tuples etc `( a, b )` -> `(a, b)` - [ ] Disallow putting kwargs before all positional args when calling functions - [ ] Space after `;` in named tuples, keyword arguments (callsite and definitions) - - [ ] Indentation + - [x] Indentation - [ ] Trim trailing `;` togheter with ws. - - [ ] Whitespace in ternaries - - [ ] Parenteses around expressions in `:` operator (e.g. `1 + 2:3` -> `(1 + 2):3)`) + - [x] Whitespace in ternaries + - [x] Parenteses around expressions in `:` operator (e.g. `1 + 2:3` -> `(1 + 2):3)`) ## Ideas