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

main.Game.__init__()   A

Complexity

Conditions 1

Size

Total Lines 39
Code Lines 29

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 29
nop 1
dl 0
loc 39
rs 9.184
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