GetAlertQuery   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A run() 0 3 1
1
from lib.actions import BaseAction
2
3
4
class GetAlertQuery(BaseAction):
5
    def run(self, **kwargs):
6
        response = self._api_get('/alerts', kwargs)
7
        return response
8