Removed unnecessary pylint disable

This commit is contained in:
dherrada 2021-11-05 15:28:23 -04:00
parent 8e0f193668
commit e32917ad0a

View file

@ -400,9 +400,7 @@ class PortalBase:
string = func(values[value_index])
else:
try:
string = "{:,d}".format(
int(values[value_index])
) # pylint: disable=consider-using-f-string
string = "{:,d}".format(int(values[value_index]))
except (TypeError, ValueError):
string = values[value_index] # ok it's a string
self._fetch_set_text(string, index=i)