Skip to content

Commit 4b32537

Browse files
committed
fix linter
1 parent a2dab0c commit 4b32537

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

arcade/examples/gui/exp_controller_support_grid.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
"""
22
Example demonstrating a grid layout with focusable buttons in an Arcade GUI.
33
4-
This example shows how to create a grid layout with buttons that can be navigated using a controller.
4+
This example shows how to create a grid layout with buttons
5+
that can be navigated using a controller.
56
It includes a focus transition setup to allow smooth navigation between buttons in the grid.
67
78
If Arcade and Python are properly installed, you can run this example with:
@@ -31,7 +32,7 @@ class FocusableButton(Focusable, UIFlatButton):
3132
def setup_grid_focus_transition(grid: Dict[Tuple[int, int], UIWidget]):
3233
"""Setup focus transition in grid.
3334
34-
Connect focus transition between `Focusable` in grid.
35+
Connect focus transition between `Focusable` in grid.
3536
3637
Args:
3738
grid: Dict[Tuple[int, int], Focusable]: grid of Focusable widgets.

arcade/experimental/controller_window.py

-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ class _WindowControllerBridge:
1818
that other systems should be aware, when not to act on events (like when the UI is active).
1919
"""
2020

21-
2221
def __init__(self, window: arcade.Window):
2322
self.window = window
2423

arcade/gui/ui_manager.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
)
4343
from arcade.gui.surface import Surface
4444
from arcade.gui.widgets import UIWidget
45-
from arcade.types import AnchorPoint, LBWH, Point2, Rect
45+
from arcade.types import LBWH, AnchorPoint, Point2, Rect
4646

4747
W = TypeVar("W", bound=UIWidget)
4848

0 commit comments

Comments
 (0)