You've already forked uiflow-micropython
mirror of
https://github.com/m5stack/uiflow-micropython.git
synced 2026-05-20 10:39:27 -07:00
da6bb81f49
Signed-off-by: lbuque <1102390310@qq.com>
10 lines
208 B
Python
10 lines
208 B
Python
# SPDX-FileCopyrightText: 2024 M5Stack Technology CO LTD
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
from .base import Base
|
|
|
|
|
|
class Button(Base):
|
|
def __init__(self, parent) -> None:
|
|
super().__init__(parent)
|