Added
- [Add support for Python 3.10 by hadialqattan](https://github.com/hadialqattan/pycln/pull/81)
Fixed
- [Pycln does not skip imports that have " nopycln: import" or " noqa" on the last line by hadialqattan](https://github.com/hadialqattan/pycln/pull/88)
- [Pycln removes extra lines in import-from multiline case (shown bellow) by hadialqattan](https://github.com/hadialqattan/pycln/pull/87)
python3
from xxx import (i,
j,
k)
if j isn't used, Pycln will remove this line no matter what it is!
- [Preserving trailing comma style in multi-line imports by hadialqattan](https://github.com/hadialqattan/pycln/pull/86)
- [Exit normally (code 0) when no files were present to be cleaned by rooterkyberian](https://github.com/hadialqattan/pycln/pull/84)
- [Parsing local path import with null-pacakge causes AttributeError by hadialqattan](https://github.com/hadialqattan/pycln/pull/76)
- [RecursionError occurs when expanding a star import that has too many related modules by hadialqattan](https://github.com/hadialqattan/pycln/pull/75)