We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bff1e04 commit dc3503aCopy full SHA for dc3503a
Tilemap_Game_With_CircuitPython/tilegame_assets/fun_facts.py
@@ -1,3 +1,4 @@
1
+# pylint: disable=line-too-long
2
# Fun facts to be read to the player by Minerva
3
FACTS = [
4
"The digitalio module lets you read and write HIGH and LOW values with IO pins.",
Tilemap_Game_With_CircuitPython/tilegame_assets/tiles.py
@@ -1,4 +1,9 @@
-from tilegame_assets.states import *
+from tilegame_assets.states import (
+ STATE_MAPWIN,
+ STATE_LOST_SPARKY,
+ STATE_MINERVA,
5
+)
6
+# pylint: disable=unused-argument
7
8
9
# Minerva before_move. Set game state to STATE_MINERVA
0 commit comments