11 lines
232 B
Python
11 lines
232 B
Python
![]() |
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()
|