Update the Rio Version, add meta tags, refactor rio components that have init overwrites, add member picture for Tim

This commit is contained in:
David Rodenkirchen
2024-06-06 05:36:30 +00:00
parent 72d1b9bc33
commit 3aad065477
16 changed files with 81 additions and 77 deletions
+2 -1
View File
@@ -2,10 +2,11 @@ import asyncio
import logging
from random import randint
from rio import Text, Component, TextStyle
from rio import Text, Component, TextStyle, i_know_what_im_doing
class Ticker(Component):
@i_know_what_im_doing
def __init__(self, texts: list[str], refresh_interval: float, style: TextStyle, tick_in_order: bool, **kwargs) -> None:
super().__init__()
if refresh_interval <= 0: