adafruit / Adafruit_CircuitPython_Requests

Requests-like interface for web interfacing
MIT License
51 stars 36 forks source link

Add API examples for various social media sites #115

Closed DJDevon3 closed 1 year ago

DJDevon3 commented 1 year ago

Includes Youtube, Twitter, Github, and Discord examples.

DJDevon3 commented 1 year ago

I have to run black first before every commit? Ugh black you vex me.

tekktrik commented 1 year ago

I have to run black first before every commit? Ugh black you vex me.

It does it automatically if you have pre-commit installed, but you can also not install it and run pre-commit run --all-files right before pushing which is what I do if I'm doing extensive changes where I know pylint or black will complain during incremental commits.

DJDevon3 commented 1 year ago

hmm thought i'd installed pre-commit, maybe that was on my WSL ubuntu instance. installed again hopefully won't have this issue next time?

DJDevon3 commented 1 year ago

Nice, looks like it passed this time without having to run black manually. Think I've fixed everything requested?