Adam Fairbrother

Results 4 comments of Adam Fairbrother

I noticed that I would have the soft lock as decribed in the second post, as well as increased battery drain when using the "raise wrist / lower wrist" wake...

I'm seeing the same results for the error getting map data. seems to be coming back as a KeyError from line 58. The errors seem to decrease when increasing the...

I ended up with: ``` from gi.repository.GLib import GError ... try: thing() except GError as e: if 'dbus.Error.Name' in str(e.args): print('Deal with this error') else: raise e ``` still learning...