From 8e75da552dd0b0cb32962f0dac1a37506d5dc4ea Mon Sep 17 00:00:00 2001 From: Nino van Hooff Date: Tue, 12 May 2020 11:23:14 +0200 Subject: [PATCH] Do not inherit SyncState from QObject not necessary and fixes mypy warning CURA-7290 --- cura/API/Account.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/API/Account.py b/cura/API/Account.py index eae59e8a71..c02e685263 100644 --- a/cura/API/Account.py +++ b/cura/API/Account.py @@ -17,7 +17,7 @@ if TYPE_CHECKING: i18n_catalog = i18nCatalog("cura") -class SyncState(QObject): +class SyncState: """QML: Cura.AccountSyncState""" SYNCING = 0 SUCCESS = 1