Completed
Pull Request — master (#544)
by
unknown
09:52 queued 03:16
created

GetResultArtifact   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 7
rs 10
c 0
b 0
f 0
wmc 1
1
from lib import actions
2
3
4
class GetResultArtifact(actions.BaseAction):
5
    def run(self, uuid, report_uuid, artifact_name, raw=False, verify=True):
6
7
        response = self.client.get_result_artifact(uuid, report_uuid,
8
                                                   artifact_name, raw, verify)
9
10
        return response
11