Commit c5db2431 authored by Dan Pascu's avatar Dan Pascu

Compacted code

parent 5daf0b09
...@@ -3785,8 +3785,7 @@ class BlinkFileTransfer(object): ...@@ -3785,8 +3785,7 @@ class BlinkFileTransfer(object):
notification.center.post_notification('BlinkFileTransferHashProgress', sender=self, data=NotificationData(progress=progress)) notification.center.post_notification('BlinkFileTransferHashProgress', sender=self, data=NotificationData(progress=progress))
def _NH_FileTransferHandlerProgress(self, notification): def _NH_FileTransferHandlerProgress(self, notification):
notification.center.post_notification('BlinkFileTransferProgress', sender=self, data=NotificationData(bytes=notification.data.transferred_bytes, notification.center.post_notification('BlinkFileTransferProgress', sender=self, data=NotificationData(bytes=notification.data.transferred_bytes, total_bytes=notification.data.total_bytes))
total_bytes=notification.data.total_bytes))
def _NH_FileTransferHandlerDidEnd(self, notification): def _NH_FileTransferHandlerDidEnd(self, notification):
if self.direction == 'incoming': if self.direction == 'incoming':
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment