From 23c039a8733c1915b93dcaf431de771611a74733 Mon Sep 17 00:00:00 2001 From: Nino van Hooff Date: Tue, 19 May 2020 14:14:39 +0200 Subject: [PATCH] Add type hint in cura/API/Account.py Co-authored-by: Jaime van Kessel --- 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 e0d2bb6d7a..49cec55eb3 100644 --- a/cura/API/Account.py +++ b/cura/API/Account.py @@ -238,7 +238,7 @@ class Account(QObject): self._sync() @pyqtSlot() - def popupClosed(self): + def popupClosed(self) -> None: self._setManualSyncEnabled(True) @pyqtSlot()