Skip to content

Commit 84c871c

Browse files
committed
Linting.
1 parent 871c4ca commit 84c871c

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

repo_helper/configupdater2.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@ def name(self, value):
475475
self._name = str(value)
476476
self._updated = True
477477

478-
# def set(self, option: str, value: Optional[str] = None) -> "Section": # noqa: A003
478+
# def set(self, option: str, value: Optional[str] = None) -> "Section": # noqa: A003 # pylint: disable=redefined-builtin
479479
# """
480480
# Set an option for chaining.
481481
#
@@ -1125,7 +1125,7 @@ def items( # type: ignore
11251125
# option = self.optionxform(option)
11261126
# return option in self[section]
11271127
#
1128-
# def set(self, section: str, option: str, value: str): # noqa: A003
1128+
# def set(self, section: str, option: str, value: str): # noqa: A003 # pylint: disable=redefined-builtin
11291129
# """
11301130
# Set an option.
11311131
#

repo_helper/configuration/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,7 @@
229229
"YamlEditor",
230230
"docs_url",
231231
"third_party_version_matrix",
232+
"entry_points",
232233
]
233234

234235

tests/test_files/test_testing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
from repo_helper.files.testing import ensure_tests_requirements, make_isort, make_tox, make_yapf
3535

3636

37-
def boolean_option(name: str, id: str): # noqa: A002 # pylint: disable=redefined-builtin
37+
def boolean_option(name: str, id: str): # noqa: A002 # pylint: disable=redefined-builtin
3838
return pytest.mark.parametrize(name, [
3939
pytest.param(True, id=id),
4040
pytest.param(False, id=f"no {id}"),

0 commit comments

Comments
 (0)