damonlynch / showinfilemanager

Platform independent Python module to open the system file manager and select files in it
MIT License
21 stars 1 forks source link

Add a `.py.typed` file #6

Closed AlexWaygood closed 1 year ago

AlexWaygood commented 1 year ago

This lets type checkers know that the package contains inline types, meaning that they won't generate annoying errors about using an untyped library if a user imports a function from the package (see PEP 561 for more details).

Closes #5

damonlynch commented 1 year ago

Thanks!

AlexWaygood commented 1 year ago

Thank you!