diff options
author | Olivier Gayot <olivier.gayot@sigexec.com> | 2021-11-12 19:40:03 +0100 |
---|---|---|
committer | Olivier Gayot <olivier.gayot@sigexec.com> | 2021-11-12 19:41:32 +0100 |
commit | c212b040b6850422b6b45da6181ce313dc786c4c (patch) | |
tree | 9b244dd73ed4f99f3bd2914f543df28b348f639c /cameltris/screens/pause.py | |
parent | 75cafb53ccc32afab3f15dfb5634874fd9500c84 (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/pause.py')
-rw-r--r-- | cameltris/screens/pause.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cameltris/screens/pause.py b/cameltris/screens/pause.py index 99749f3..72ff51a 100644 --- a/cameltris/screens/pause.py +++ b/cameltris/screens/pause.py @@ -4,7 +4,7 @@ from typing import Callable, NoReturn import pygame -from .screen import Screen +from .base_screen import Screen from ..controller import Controller, KeyboardController, JoystickController, Input from ..misc import UnPause |