openscap_report.scap_results_parser.data_structures.oval_variable   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Test Coverage

Coverage 90%

Importance

Changes 0
Metric Value
wmc 1
eloc 11
dl 0
loc 18
ccs 9
cts 10
cp 0.9
rs 10
c 0
b 0
f 0

1 Method

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