Completed
Push — master ( a3e8d9...aa8f16 )
by Lakshmi
02:09
created

ListReportsAction   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 4
Duplicated Lines 0 %
Metric Value
dl 0
loc 4
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A run() 0 3 1
1
from lib.base import QualysBaseAction
2
3
__all__ = [
4
    'ListReportsAction'
5
]
6
7
8
class ListReportsAction(QualysBaseAction):
9
    def run(self):
10
        reports = self.connection.listReports()
11
        return self.resultsets.formatter(reports)
12