hedyorg / hedy

Hedy is a gradual programming language to teach children programming. Gradual languages use different language levels, where each level adds new concepts and syntactic complexity. At the end of the Hedy level sequence, kids master a subset of syntactically valid Python.
https://www.hedy.org
European Union Public License 1.2
1.32k stars 289 forks source link

[CHORE] Implement isort in pre-commit hook #3869

Open mennoliefstingh opened 1 year ago

mennoliefstingh commented 1 year ago

isort is a library that automatically sorts your imports according to pep8 conventions, i.e. in alphabetical order, 'from' imports separated, all at the top of the file. It's even less invasive than e.g. autopep8 since the worst it can do is move imports to the top of a file, which can't really break anything.

mohitsaxenaknoldus commented 1 year ago

Do you want to replace it with autopep8?