openscap_report.scap_results_parser.data_structures.warning   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Test Coverage

Coverage 87.5%

Importance

Changes 0
Metric Value
eloc 11
dl 0
loc 18
ccs 7
cts 8
cp 0.875
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A RuleWarning.as_dict() 0 2 1
1
# Copyright 2022, Red Hat, Inc.
2
# SPDX-License-Identifier: LGPL-2.1-or-later
3 1
from openscap_report.dataclasses import asdict, dataclass
4
5 1
WARNING_JSON_KEYS = [
6
    "text",
7
    "category",
8
]
9
10
11 1
@dataclass
12 1
class RuleWarning:
13 1
    text: str
14 1
    category: str = ""
15
16 1
    def as_dict(self):
17
        return asdict(self)
18