Skip to content

Commit

Permalink
Merge pull request #2369 from vivekanand1101/patch-1
Browse files Browse the repository at this point in the history
CuraApplication: Minor pep8 fix
  • Loading branch information
nallath committed Sep 4, 2017
2 parents 0358b1f + ee1ba30 commit 20ffb0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cura/CuraApplication.py
Expand Up @@ -488,7 +488,7 @@ def saveStack(self, stack):
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)
Expand Down Expand Up @@ -1128,7 +1128,7 @@ def setExpandedCategories(self, categories):

expandedCategoriesChanged = pyqtSignal()

@pyqtProperty("QStringList", notify = expandedCategoriesChanged)
@pyqtProperty("QStringList", notify=expandedCategoriesChanged)
def expandedCategories(self):
return Preferences.getInstance().getValue("cura/categories_expanded").split(";")

Expand Down

0 comments on commit 20ffb0c

Please sign in to comment.