All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
11 lines
298 B
Python
11 lines
298 B
Python
class ProspectTraceStates():
|
|
@staticmethod
|
|
def get_prospect_trace_states():
|
|
states = [
|
|
('unassigned', 'Unassigned'),
|
|
('open', 'Open'),
|
|
('with_pending_calls', 'With pending calls'),
|
|
('closed', 'Closed')
|
|
]
|
|
return states
|