Passed
Pull Request — master (#2949)
by
unknown
02:03
created

ssg   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 15
dl 0
loc 17
rs 10
c 0
b 0
f 0
1
import ssg._checks as checks
0 ignored issues
show
Coding Style introduced by
This module should have a docstring.

The coding style of this project requires that you add a docstring to this code element. Below, you find an example for methods:

class SomeClass:
    def some_method(self):
        """Do x and return foo."""

If you would like to know more about docstrings, we recommend to read PEP-257: Docstring Conventions.

Loading history...
2
import ssg._constants as constants
3
import ssg._contributors as contributors
4
import ssg._id_translate as id_translate
5
import ssg._jinja as jinja
6
import ssg._oval as oval
0 ignored issues
show
Bug introduced by
The name _oval does not seem to exist in module ssg.
Loading history...
introduced by
Unable to import 'ssg._oval'
Loading history...
7
import ssg._products as products
8
import ssg._parse_oval as parse_oval
9
import ssg._stig as stig
10
import ssg._utils as utils
11
import ssg._xccdf as xccdf
12
import ssg._xml as xml
13
import ssg._yaml as yaml
14
15
# Compatibility shims
16
import ssg._shims as shims
17