mirror of
https://github.com/mia-0/0x0.git
synced 2026-01-23 02:54:02 +00:00
8 lines
190 B
Python
8 lines
190 B
Python
from textual.widgets import Static
|
|
|
|
class Notification(Static):
|
|
def on_mount(self) -> None:
|
|
self.set_timer(3, self.remove)
|
|
|
|
def on_click(self) -> None:
|
|
self.remove()
|