Create your own GitHub profile
Sign up for your own profile on GitHub, the best place to host code, manage projects, and build software alongside 50 million developers.
Sign up
Pinned
2,022 contributions in the last year
Contribution activity
October 2020
Created a pull request in jugmac00/Products.ZopeTree that received 2 comments
Use Black profile
As a possible alternative to: #16. Updates project to use the black profile for isort. Additionally, removes some unnecessary skips that were present.
Created an issue in PyCQA/isort that received 8 comments
Automatic nested duplicate import removal
Currently, isort only removes duplicate imports if they are in the same import sorting block:
import a
import a
import b
import b
Becomes:
import …