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

main.Player.__init__()   A

Complexity

Conditions 1

Size

Total Lines 15
Code Lines 14

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 14
nop 1
dl 0
loc 15
rs 9.7
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