Skip to content

Commit 8779437

Browse files
committed
initialize parent attributes to make pylint happier
1 parent e3ad67f commit 8779437

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

CircuitPython_Neko_Cat/code.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,9 @@ def __init__(self, animation_time=0.3, display_size=None):
172172
tile_height=32,
173173
)
174174

175+
self.x = 0
176+
self.y = 0
177+
175178
# set the animation time into a private field
176179
self._animation_time = animation_time
177180

0 commit comments

Comments
 (0)