UpdateTicketStatusAction   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 3
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A run() 0 2 1
1
from lib.zendesk import ZendeskAction
2
3
__all__ = [
4
    'UpdateTicketStatusAction'
5
]
6
7
8
class UpdateTicketStatusAction(ZendeskAction):
9
    def run(self, ticket_id, status):
10
        return self.update_ticket_status(ticket_id, status)
11