for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
# Copyright 2022, Red Hat, Inc.
# SPDX-License-Identifier: LGPL-2.1-or-later
from openscap_report.dataclasses import asdict, dataclass
WARNING_JSON_KEYS = [
"text",
"category",
]
@dataclass
class RuleWarning:
text: str
category: str = ""
def as_dict(self):
return asdict(self)