Passed
Push — master ( 2f29cd...4bc53c )
by Yohann
01:12
created

main.main()   A

Complexity

Conditions 1

Size

Total Lines 3
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 3
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
from src.game import Game
2
3
__release__ = "04/05/2020"
4
__version__ = 2.0
5
6
7
def main():
8
    game = Game()
9
    game.main()
10
11
12
if __name__ == '__main__':
13
    main()
14