Total Complexity | 0 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 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__)]) |
||
|
|||
15 | _loaded = True |
||
16 |