0x0/modui/notification.py
Mia Herkt 26a70c00b7
Add moderation TUI
This ended up way fancier than I imagined.
2022-12-20 15:57:58 +01:00

9 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()