rename text class

This commit is contained in:
waltem01 2023-11-23 07:38:21 +01:00
parent 75d0c05877
commit 82e5259e4b

View File

@ -4,9 +4,9 @@ from rgbmatrix import graphics
import time
class Test(SampleBase):
class Text(SampleBase):
def __init__(self, *args, **kwargs):
super(Test, self).__init__(*args, **kwargs)
super(Text, self).__init__(*args, **kwargs)
self.parser.add_argument("-t", "--text", help="The text to scroll on the RGB LED panel", default="Hello world!")
def run(self):
@ -24,6 +24,6 @@ class Test(SampleBase):
if __name__ == "__main__":
test = Test()
if not test.process():
test.print_help()
text = Text()
if not text.process():
text.print_help()