fix style issue

This commit is contained in:
Wolfgang Hottgenroth 2019-09-10 16:35:51 +02:00
parent 0f007b058d
commit 2930d39345
Signed by: wn
GPG Key ID: 6C1E5E531E0D5D7F

View File

@ -14,7 +14,7 @@ class MyPriorityQueueItem(object):
def __ne__(self, other): return self.itemWithPriority.priority != other.itemWithPriority.priority
def __gt__(self, other): return self.itemWithPriority.priority > other.itemWithPriority.priority
def __ge__(self, other): return self.itemWithPriority.priority >= other.itemWithPriority.priority