µKöff
µKöff
I hereby fully agree to the project's [Contributor License Agreement](https://github.com/grote/Transportr/blob/cfd476ed3bb30d8d481940f539f9c6f946f783eb/CLA.md).
@ialokim I used [the file on their website](https://www.mobiliteit.lu/wp-content/themes/mobiliteit/assets/img/mobiliteit-logo-mobile.svg).
MediaWiki has been updated to 1.39 with openstreetmap/chef@bb3cefead93fa6d05987cc19801e6a87672ddf18 and #749 has been resolved. Seems like this issue is now unblocked.
> Cannot destructure property 'vendor' of 'data.device._definition' as it is undefined. This problem still occures in [1.35.3](Koenkk/zigbee2mqtt/releases/tag/1.35.3). I could workaround this be replacing every instance of `_definition` with `definition`.
> Your write-up suggests you didn't know that. I actually meant that clicking “OK” does literally nothing at all. Not even closing the dialog window. Clicking on it causes the...
Replacing `text = model.get_value(i.next().iter, 0)` with `text = model.get_value(i.__next__().iter, 0)` indeed resolved the issue.
As far as I understand the PEP, the idiomatic replacement that avoids calling internal functions would be: (which also works, by the way) ```python text = model.get_value(next(i).iter, 0) ```