Passed
Pull Request — master (#2)
by Uwe
01:06
created

scenario_builder.config   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 7
dl 0
loc 16
rs 10
c 0
b 0
f 0
wmc 0
1
"""Create a basic scenario from the internal data structure.
2
3
SPDX-FileCopyrightText: 2016-2019 Uwe Krien <[email protected]>
4
5
SPDX-License-Identifier: MIT
6
"""
7
8
import os
9
10
from reegis.config import *
11
12
_loaded = False
13
if not _loaded:
14
    init(paths=[os.path.dirname(__file__)])
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable init does not seem to be defined.
Loading history...
15
    _loaded = True
16