Skip to content

Commit 71beb77

Browse files
committed
Formatting fixes.
1 parent 2bf8c70 commit 71beb77

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

Qt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1129,7 +1129,7 @@ def wrapper(*args, **kwargs):
11291129

11301130
decorators = {
11311131
"QFileDialog": {
1132-
"getOpenFileName":_standardizeQFileDialog,
1132+
"getOpenFileName": _standardizeQFileDialog,
11331133
"getOpenFileNames": _standardizeQFileDialog,
11341134
"getSaveFileName": _standardizeQFileDialog,
11351135
}

examples/QtSiteConfig/QtSiteConfig.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ def update_members(members):
1414
# more realistic example see the README
1515
members.pop("QtCore")
1616

17+
1718
def update_misplaced_members(members):
1819
"""This optional function is called by Qt.py to standardize the location
1920
and naming of exposed classes.
@@ -26,6 +27,7 @@ def update_misplaced_members(members):
2627
members["PySide"]["QtGui.QColor"] = "QtGui.QColorTest"
2728
members["PyQt4"]["QtGui.QColor"] = "QtGui.QColorTest"
2829

30+
2931
def update_compatibility_members(members):
3032
"""This optional function is called by Qt.py to modify the structure of
3133
QtCompat namespace classes.
@@ -47,6 +49,7 @@ def update_compatibility_members(members):
4749
"windowTitleDecorator": "QtWidgets.QMainWindow.windowTitle"
4850
}
4951

52+
5053
def update_compatibility_decorators(binding, decorators):
5154
""" This optional function is called by Qt.py to modify the decorators
5255
applied to QtCompat namespace objects.

0 commit comments

Comments
 (0)