All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
13 lines
328 B
Python
13 lines
328 B
Python
class Interest():
|
|
@staticmethod
|
|
def get_interest_levels():
|
|
interest_levels = [
|
|
('', None),
|
|
('0', '0 - Not answered'),
|
|
('1', '1 - Complete disinterest'),
|
|
('2', '2 - Middle interest'),
|
|
('3', '3 - High interest')
|
|
]
|
|
|
|
return interest_levels
|