Passed
Push — master ( 5fca79...7dcab2 )
by Yohann
01:19 queued 11s
created

main   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 21
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 13
dl 0
loc 21
rs 10
c 0
b 0
f 0
wmc 1

1 Function

Rating   Name   Duplication   Size   Complexity  
A main() 0 3 1
1
from typing import NoReturn
2
3
import pygame
4
5
from src.game import Game
6
7
__release__: str = "07/24/2020"
8
__version__: float = 3.0
9
10
pygame.init()
11
pygame.display.init()
12
13
14
def main() -> NoReturn:
15
    game: Game = Game()
16
    game.main()
17
18
19
if __name__ == '__main__':
20
    main()
21