Remove unneeded parens
This commit is contained in:
parent
7f0ecaa89e
commit
ec6017b3b2
@ -570,7 +570,7 @@ class TabBar(QTabBar):
|
|||||||
pinned_count, pinned_width = self._pinned_statistics()
|
pinned_count, pinned_width = self._pinned_statistics()
|
||||||
else:
|
else:
|
||||||
pinned = False
|
pinned = False
|
||||||
pinned_count, pinned_width = (0, 0)
|
pinned_count, pinned_width = 0, 0
|
||||||
no_pinned_count = self.count() - pinned_count
|
no_pinned_count = self.count() - pinned_count
|
||||||
no_pinned_width = self.width() - pinned_width
|
no_pinned_width = self.width() - pinned_width
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user