Reorder ShipmentStatus

master
informatic 2020-04-24 14:41:29 +02:00
parent c08a97f92f
commit 1048b60409
1 changed files with 2 additions and 2 deletions

View File

@ -28,8 +28,8 @@ class ShipmentStatus(enum.Enum):
booked = 2 booked = 2
collected = 3 collected = 3
inDelivery = 4 inDelivery = 4
delivered = 5 returned = 5
returned = 6 delivered = 6
def __ge__(self, other): def __ge__(self, other):
if self.__class__ is other.__class__: if self.__class__ is other.__class__: