Skip to content

Commit 90640b7

Browse files
committed
Temp pylint bypass for WIP
1 parent 7a29bc0 commit 90640b7

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

adafruit_progressbar/verticalprogressbar.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ class FillDirection(enumerate):
4040
RIGHT_TO_LEFT = 3
4141

4242

43-
# pylint: disable=too-many-arguments, too-few-public-methods
44-
class ProgressBar(ProgressBarBase):
43+
# pylint: disable=too-many-arguments, too-few-public-methods, too-many-instance-attributes
44+
class VerticalProgressBar(ProgressBarBase):
4545
"""A dynamic progress bar widget.
4646
4747
The anchor position is the position where the control would start if it
@@ -139,6 +139,8 @@ def __init__(
139139
for line in range(stroke):
140140
self._bitmap[line, _h] = 1
141141
self._bitmap[self._width - 1 - line, _h] = 1
142+
143+
# pylint: disable=unexpected-keyword-arg, no-value-for-parameter
142144
super().__init__(self._bitmap, pixel_shader=self._palette, x=self._x, y=self._y)
143145

144146
@property
@@ -149,6 +151,7 @@ def progress(self):
149151
"""
150152
return self._progress_val
151153

154+
# pylint: disable=too-many-locals
152155
@progress.setter
153156
def progress(self, value):
154157
"""Draws the progress bar

0 commit comments

Comments
 (0)