siku2 / script.service.sponsorblock

Kodi add-on for SponsorBlock
MIT License
124 stars 14 forks source link

chore: add kodistubs dependency #50

Closed SethFalco closed 1 year ago

SethFalco commented 1 year ago

I was reviewing the JellyCon (Jellyfin) add-on for Kodi, and noticed they had a dependency called Kodistub.

Kodi stubs are Python files that can help you develop addons for Kodi (XBMC) Media Center. Use them in your favorite IDE to enable autocompletion and view docstrings for Kodi Python API functions, classes and methods. Kodistubs also include PEP-484 type annotations for all functions and methods.

https://pypi.org/project/Kodistubs/20.0.0/

Basically, it's a pip package with just types/docs in it for the most part. No real functionality.

It's made reading code and contributing so much easier. Thoughts on including the dev dependency here?