kivy / plyer

Plyer is a platform-independent Python wrapper for platform-dependent APIs
https://plyer.readthedocs.io
MIT License
1.56k stars 424 forks source link

Update import usage to comply with correct function signature #809

Open gunaNeelamegam opened 2 months ago

gunaNeelamegam commented 2 months ago

TODO:

mod = __import__(module, fromlist = ".")

AS

mod = __import__(module, fromlist = ["."])