Closed hassaanshafqatt closed 3 months ago
Note to self: needs black fixes before merge (I can and will do that after lunch, but I'm flagging this for myself so I don't forget.)
You're welcome and as this is my first contribution here, Would you consider commenting a bit on what this black issue is? I did some research on my end but couldn't get an exact answer.
Thank you.
Black is an auto-formatter we use in place of a style guide to make our code more consistent with the PEP8 python style guide. You can read all about the various linters we use here: https://cve-bin-tool.readthedocs.io/en/latest/CONTRIBUTING.html#running-linters
Since black will auto-format your code, you can just do the following to fix any error it's complaining about once you have black installed:
black <filename>
git add <filename>
git commit -m "chore: fix black issues"
git push <your branch>
I'll leave this open and unmerged for a bit in case you want to just try that yourself! Otherwise I'll sort out the fixes tomorrow and merge it then.
Sure, I'm on it.
Followed your instructions, I hope that fixes it.
All good! Thank you again!
fixes #4053