summaryrefslogtreecommitdiff
path: root/cameltris/screens/in_game.py
diff options
context:
space:
mode:
authorOlivier Gayot <olivier.gayot@sigexec.com>2021-11-12 19:40:03 +0100
committerOlivier Gayot <olivier.gayot@sigexec.com>2021-11-12 19:41:32 +0100
commitc212b040b6850422b6b45da6181ce313dc786c4c (patch)
tree9b244dd73ed4f99f3bd2914f543df28b348f639c /cameltris/screens/in_game.py
parent75cafb53ccc32afab3f15dfb5634874fd9500c84 (diff)
Rename base class screen module base_screen to make pylint happy
Signed-off-by: Olivier Gayot <olivier.gayot@sigexec.com>
Diffstat (limited to 'cameltris/screens/in_game.py')
-rw-r--r--cameltris/screens/in_game.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cameltris/screens/in_game.py b/cameltris/screens/in_game.py
index 1ae20de..46450aa 100644
--- a/cameltris/screens/in_game.py
+++ b/cameltris/screens/in_game.py
@@ -7,7 +7,7 @@ from typing import Callable, NoReturn, Optional
import pygame
from ..color import Color
-from .screen import Screen
+from .base_screen import Screen
from ..piece import *
from ..playfield import PlayField
from ..controller import Input, Controller, KeyboardController, JoystickController