Skip to content

Commit

Permalink
fix(gui): event propagation and further cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
eruvanos committed Jul 27, 2024
1 parent c97e5e4 commit a6c457b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions arcade/gui/widgets/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
from __future__ import annotations

from abc import ABC
from random import randint
from typing import NamedTuple, Iterable, Optional, Union, TYPE_CHECKING, TypeVar, Tuple, List, Dict

from pyglet.event import EventDispatcher, EVENT_HANDLED, EVENT_UNHANDLED
Expand All @@ -22,7 +21,7 @@
from arcade.gui.nine_patch import NinePatchTexture
from arcade.gui.property import Property, bind, ListProperty
from arcade.gui.surface import Surface
from arcade.types import RGBA255, Color, AnchorPoint, AsFloat
from arcade.types import Color, AnchorPoint, AsFloat
from arcade.utils import copy_dunders_unimplemented

if TYPE_CHECKING:
Expand Down

0 comments on commit a6c457b

Please sign in to comment.