File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
src/frequenz/client/dispatch Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff 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" ,
Original file line number Diff line number Diff 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
467467def main () -> None :
You can’t perform that action at this time.
0 commit comments