Skip to content

Commit e32917a

Browse files
committed
Removed unnecessary pylint disable
1 parent 8e0f193 commit e32917a

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

adafruit_portalbase/__init__.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -400,9 +400,7 @@ def _fill_text_labels(self, values):
400400
string = func(values[value_index])
401401
else:
402402
try:
403-
string = "{:,d}".format(
404-
int(values[value_index])
405-
) # pylint: disable=consider-using-f-string
403+
string = "{:,d}".format(int(values[value_index]))
406404
except (TypeError, ValueError):
407405
string = values[value_index] # ok it's a string
408406
self._fetch_set_text(string, index=i)

0 commit comments

Comments
 (0)