Why does this work?
edent opened this issue · 0 comments
edent commented
As seen on
- https://github.com/tomhartley/AirPi/blob/master/airpi.py#L48
- https://github.com/tomhartley/AirPi/blob/master/airpi.py#L116
Basically, that's just the way Python works. There's a very details explanation at https://stackoverflow.com/questions/2724260/why-does-pythons-import-require-fromlist
Personally, I'd use fromlist=['magic']
;-)