Skip to content

Commit b9a08a0

Browse files
committed
test(tkinter show): Improve BDD tests
1 parent 14304b9 commit b9a08a0

3 files changed

Lines changed: 893 additions & 579 deletions

File tree

ardupilot_methodic_configurator/frontend_tkinter_show.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def show_no_connection_error(_error_string: str) -> None:
5858
show_error_message(_("No Connection to the Flight Controller"), error_message.format(**locals()))
5959

6060

61-
def calculate_tooltip_position( # noqa: PLR0913
61+
def calculate_tooltip_position( # noqa: PLR0913 # pylint: disable=too-many-arguments, too-many-positional-arguments
6262
widget_x: int,
6363
widget_y: int,
6464
widget_width: int,
@@ -95,7 +95,7 @@ class Tooltip:
9595
Creates a tooltip that appears when the mouse hovers over a widget and disappears when the mouse leaves the widget.
9696
"""
9797

98-
def __init__(
98+
def __init__( # pylint: disable=too-many-arguments, too-many-positional-arguments
9999
self,
100100
widget: tk.Widget,
101101
text: str,

0 commit comments

Comments
 (0)