Skip to content

Commit 7622520

Browse files
committed
pylint disable too-many-function-args
1 parent b8d94ec commit 7622520

File tree

1 file changed

+1
-1
lines changed
  • Metro/Metro_RP2350_Chips_Challenge

1 file changed

+1
-1
lines changed

Metro/Metro_RP2350_Chips_Challenge/game.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def __init__(self, display, data_file, audio):
7878
self._loading_group = displayio.Group()
7979
self._tile_size = 24 # Default tile size (length and width)
8080
self._digit_dims = (0, 0)
81-
self._gamelogic = GameLogic(data_file, audio)
81+
self._gamelogic = GameLogic(data_file, audio) # pylint: disable=too-many-function-args
8282
self._databuffer = DataBuffer()
8383
self._color_index = {}
8484
self._init_display()

0 commit comments

Comments
 (0)