New Texturizing Pattern: Auxiliary Notes
Adds a new texturization pattern in texturizers.py. Creates an auxiliary note from a quater note / half note long chords.
Dear Arisa,
The code looks good! I need to checkout the branch and run it locally to inspect it more closely.
In the meantime, I have a request if you wish to merge your code into the official AugmentedNet codebase:
- Can you pass your code through the black formatter?
Something like this should help you with that, if you run it from the root folder of the repository:
$ pip install black
$ python -m black --exclude "rawdata|.env" --check -l 79 .
Black is a code formatter. All of the code in the repository uses this convention and any new code is expected to also use the convention. The -l 79 applies a constrain to 79-characters per line, which makes the coded PEP8 compliant. And the excluded directories have some python code, but we only format the internal code, not the one from external dependencies.