removed leftovers of string_ from builtins

This commit is contained in:
skelly37
2022-03-15 17:07:48 +01:00
parent bff804ff94
commit 26865f5939
2 changed files with 1 additions and 2 deletions

View File

@@ -39,7 +39,6 @@
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
import builtins
from collections import namedtuple from collections import namedtuple
from collections.abc import Mapping from collections.abc import Mapping
from itertools import chain from itertools import chain

View File

@@ -7,7 +7,7 @@
# E501: line too long (xx > 79 characters) # E501: line too long (xx > 79 characters)
# W503: line break occurred before a binary operator # W503: line break occurred before a binary operator
ignore = E127,E128,E129,E226,E241,E501,W503 ignore = E127,E128,E129,E226,E241,E501,W503
builtins = _,N_,ngettext,gettext_attributes,pgettext_attributes,gettext_countries,string_ builtins = _,N_,ngettext,gettext_attributes,pgettext_attributes,gettext_countries
exclude = ui_*.py,picard/resources.py exclude = ui_*.py,picard/resources.py
[coverage:run] [coverage:run]