mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 07:26:29 +00:00
14 lines
258 B
Python
14 lines
258 B
Python
|
|
|
|
class Phase(object):
|
|
description = None
|
|
|
|
def __init__(self):
|
|
pass
|
|
|
|
def __cmp__(self, other):
|
|
from common.phases import order
|
|
return order.index(self) - order.index(other)
|
|
|
|
def __str__(self):
|
|
return '{name}'.format(name=self.__class__.__name__)
|