fix style issue

This commit is contained in:
2019-09-10 16:35:51 +02:00
parent 0f007b058d
commit 2930d39345

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