Skip to content

Commit

Permalink
a bunch of stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
Slinger360 committed Dec 19, 2019
1 parent c50737e commit 4d07b0e
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
1 change: 0 additions & 1 deletion .android

This file was deleted.

1 change: 1 addition & 0 deletions .android/able
Submodule able added at 453af2
2 changes: 1 addition & 1 deletion fwupd.py
Expand Up @@ -105,4 +105,4 @@ def Flash(self, fwfilep):

@mainthread
def update_progress(self, progress, maxprogress):
setprogbar(progress, maxprogress)
pass
5 changes: 4 additions & 1 deletion nbclient.py
Expand Up @@ -120,7 +120,10 @@ def update_state(self, state):
def disconnect(self):
if self.state == 'connected':
self.update_state('disconnecting')
self._link.close()
try:
self._link.close()
except:
pass
self.update_state('disconnected')

def on_error(self, *args):
Expand Down
2 changes: 1 addition & 1 deletion ninerift.kv
Expand Up @@ -173,7 +173,7 @@
height: '12sp'
Spinner:
text: 'Protocol'
values: ['xiaomi', 'ninebot']
values: ['ninebot']
on_text: app.conn.transport = self.text.lower()
font_size: '12sp'
height: '12sp'
Expand Down

0 comments on commit 4d07b0e

Please sign in to comment.