Passed
Push — main ( 6289d0...54c542 )
by J
01:58
created

devenv.__main__.run_devenv()   A

Complexity

Conditions 1

Size

Total Lines 2
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 2
rs 10
c 0
b 0
f 0
cc 1
nop 0
1
# -*- coding: utf-8 -*-
2
from devenv.devenv import main, parse_args
3
4
5
def run_devenv():
6
    main(parse_args())
7
8
9
if __name__ == "__main__":
10
    run_devenv()
11