Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuben D <rubend@tutanota.com>2017-09-10 17:55:24 +0300
committerRuben D <rubend@tutanota.com>2017-09-10 17:55:24 +0300
commit1e3cfc56bef3ac8bcb8e1b8f53c755d2c1bb5d73 (patch)
treed4342133ac85c1264a55d87c15f95a1e7236fd4e /cura/CuraApplication.py
parent234e724fe90f72f279ed8586bc6b551719cddbc1 (diff)
Revert "CuraApplication: Minor pep8 fix"
This reverts commit ee1ba30d0eec849f78a710ee5f270b2c756402fc.
Diffstat (limited to 'cura/CuraApplication.py')
-rwxr-xr-xcura/CuraApplication.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py
index ee1c1aeec6..1b7dafd53d 100755
--- a/cura/CuraApplication.py
+++ b/cura/CuraApplication.py
@@ -488,7 +488,7 @@ class CuraApplication(QtApplication):
f.write(data)
- @pyqtSlot(str, result=QUrl)
+ @pyqtSlot(str, result = QUrl)
def getDefaultPath(self, key):
default_path = Preferences.getInstance().getValue("local_file/%s" % key)
return QUrl.fromLocalFile(default_path)
@@ -1128,7 +1128,7 @@ class CuraApplication(QtApplication):
expandedCategoriesChanged = pyqtSignal()
- @pyqtProperty("QStringList", notify=expandedCategoriesChanged)
+ @pyqtProperty("QStringList", notify = expandedCategoriesChanged)
def expandedCategories(self):
return Preferences.getInstance().getValue("cura/categories_expanded").split(";")