mirror of
https://github.com/Benexl/FastAnime.git
synced 2025-12-25 20:34:26 -08:00
10 lines
196 B
Python
10 lines
196 B
Python
from kivy.properties import StringProperty
|
|
|
|
from kivymd.uix.boxlayout import MDBoxLayout
|
|
|
|
|
|
class AnimeDescription(MDBoxLayout):
|
|
"""The anime description"""
|
|
|
|
description = StringProperty()
|