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

main.Game.over_screen()   B

Complexity

Conditions 5

Size

Total Lines 40
Code Lines 30

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 5
eloc 30
nop 1
dl 0
loc 40
rs 8.6933
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