Skip to content

Commit 93c5127

Browse files
committed
pep8 clean up
1 parent 3dc9290 commit 93c5127

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

NodeGraphQt/widgets/actions.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ class BaseMenu(QtWidgets.QMenu):
99
def __init__(self, *args, **kwargs):
1010
super(BaseMenu, self).__init__(*args, **kwargs)
1111
# text_color = self.palette().text().color().getRgb()
12-
text_color = tuple(map(lambda i, j: i - j, (255, 255, 255), ViewerEnum.BACKGROUND_COLOR.value))
12+
text_color = tuple(map(lambda i, j: i - j, (255, 255, 255),
13+
ViewerEnum.BACKGROUND_COLOR.value))
1314
selected_color = self.palette().highlight().color().getRgb()
1415
style_dict = {
1516
'QMenu': {

0 commit comments

Comments
 (0)