Skip to content

Commit c1ba73d

Browse files
committed
Disable pylint no-member check as it is checked by mypy
Signed-off-by: Mathias L. Baumann <[email protected]>
1 parent 4e7d21e commit c1ba73d

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,8 @@ disable = [
151151
# pylint's unsubscriptable check is buggy and is not needed because
152152
# it is a type-check, for which we already have mypy.
153153
"unsubscriptable-object",
154+
# Checked by mypy
155+
"no-member",
154156
# Checked by flake8
155157
"redefined-outer-name",
156158
"unused-import",

src/frequenz/client/dispatch/__main__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -459,9 +459,9 @@ async def display_help() -> None:
459459

460460

461461
# Add recurrence options to the create command
462-
create.params += recurrence_options # pylint: disable=no-member
462+
create.params += recurrence_options
463463
# Add recurrence options to the update command
464-
update.params += recurrence_options # pylint: disable=no-member
464+
update.params += recurrence_options
465465

466466

467467
def main() -> None:

0 commit comments

Comments
 (0)