brisonus_app_eq/test/test_widget_card/test_widget_card.py

11 lines
232 B
Python
Raw Normal View History

2025-02-18 22:05:52 +08:00
from component.widget_card.widget_card import Widget_Card
if __name__ == '__main__':
import sys
from PySide6.QtWidgets import QApplication
app = QApplication(sys.argv)
widget = Widget_Card()
widget.show()