Fix missing argument in application stopped signal callback

This commit is contained in:
ChrisTerBeke 2018-05-11 18:15:50 +02:00
parent c678b401e3
commit 0e0492327c
No known key found for this signature in database
GPG key ID: A49F1AB9D7E0C263

View file

@ -54,7 +54,7 @@ class USBPrinterOutputDeviceManager(QObject, OutputDevicePlugin):
self._check_updates = True
self._update_thread.start()
def stop(self):
def stop(self, store_data: bool = True):
self._check_updates = False
def _onConnectionStateChanged(self, serial_port):