uv build local project dev

This commit is contained in:
2025-09-06 15:43:58 +02:00
parent 2929064f4d
commit 6902f07161
6 changed files with 30 additions and 17 deletions

View File

@@ -1,9 +1,5 @@
import logging
import sys
from PySide6.QtGui import QPainter
from PySide6.QtWidgets import (
QApplication,
QGraphicsScene,
QGraphicsView,
QHBoxLayout,
@@ -34,12 +30,3 @@ class Window(QWidget):
self.setLayout(vbox)
self.show()
logging.basicConfig(
level=logging.DEBUG,
format="%(asctime)s - %(name)s - %(levelname)s - %(message)s",
)
app = QApplication(sys.argv)
w = Window()
app.exec()