main.main()   A
last analyzed

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 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