diff options
author | Viljami Ilola <+@hix.fi> | 2024-03-31 10:51:03 +0300 |
---|---|---|
committer | Viljami Ilola <+@hix.fi> | 2024-03-31 10:51:03 +0300 |
commit | 1a4422be08ef234ed0666f13b13fc03506c197b3 (patch) | |
tree | ecd98ba534abcfaeae3d729f9040b36ffa3c6026 /src/sliceitoff/game/level.py | |
parent | af17f92e0beda893fb91ff757b76f2499e500666 (diff) |
python 3.10 and proper version number + lint
Diffstat (limited to 'src/sliceitoff/game/level.py')
-rw-r--r-- | src/sliceitoff/game/level.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sliceitoff/game/level.py b/src/sliceitoff/game/level.py index 085cbc9..c6633fd 100644 --- a/src/sliceitoff/game/level.py +++ b/src/sliceitoff/game/level.py @@ -11,6 +11,7 @@ from .show import Show class Level(pygame.sprite.Group): """ One level that can be played """ + # pylint: disable = too-many-instance-attributes def __init__(self, stats = None): super().__init__() self.stats = stats |