Skip to content

Commit

Permalink
build: disable too-many-positional-arguments pylint check
Browse files Browse the repository at this point in the history
Error was triggered in newly installed pylint version 3.3
  • Loading branch information
zehnm committed Sep 27, 2024
1 parent d346e1b commit 23a2388
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions intg-appletv/tv.py
Original file line number Diff line number Diff line change
Expand Up @@ -906,6 +906,7 @@ async def set_media_position(self, media_position: int) -> ucapi.StatusCodes:
await self._atv.remote_control.set_position(media_position)

@async_handle_atvlib_errors
# pylint: disable=too-many-positional-arguments
async def swipe(self, start_x: int, start_y: int, end_x: int, end_y: int, duration_ms: int) -> ucapi.StatusCodes:
"""Generate a swipe gesture."""
touch_facade: FacadeTouchGestures = cast(FacadeTouchGestures, self._atv.touch)
Expand Down

0 comments on commit 23a2388

Please sign in to comment.