summaryrefslogtreecommitdiffstats
path: root/src/prompt_toolkit/mouse_events.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-05 04:45:14 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-05 04:45:14 +0000
commit5b43aaac61ac94abe722bc98ae58468618f2f512 (patch)
tree3d58c89faa23d194f83abb24ae1fd05067538fff /src/prompt_toolkit/mouse_events.py
parentAdding upstream version 3.0.43. (diff)
downloadprompt-toolkit-5b43aaac61ac94abe722bc98ae58468618f2f512.tar.xz
prompt-toolkit-5b43aaac61ac94abe722bc98ae58468618f2f512.zip
Adding upstream version 3.0.46.upstream/3.0.46
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/prompt_toolkit/mouse_events.py')
-rw-r--r--src/prompt_toolkit/mouse_events.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/prompt_toolkit/mouse_events.py b/src/prompt_toolkit/mouse_events.py
index 743773b..f244f8e 100644
--- a/src/prompt_toolkit/mouse_events.py
+++ b/src/prompt_toolkit/mouse_events.py
@@ -15,6 +15,7 @@ through the `Window` class where the coordinates are translated from absolute
coordinates to coordinates relative to the user control, and there
`UIControl.mouse_handler` is called.
"""
+
from __future__ import annotations
from enum import Enum
@@ -81,9 +82,4 @@ class MouseEvent:
self.modifiers = modifiers
def __repr__(self) -> str:
- return "MouseEvent({!r},{!r},{!r},{!r})".format(
- self.position,
- self.event_type,
- self.button,
- self.modifiers,
- )
+ return f"MouseEvent({self.position!r},{self.event_type!r},{self.button!r},{self.modifiers!r})"