Deutsche Sprachanweisung und Code-Bereinigung

- CLAUDE.md: Deutsche Sprachanweisung am Anfang hinzugefügt
- src/main.py: Auskommentierten qdarktheme Code entfernt (Import und Setup)
- Verbessert Code-Qualität durch Entfernen von totem Code

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
2025-12-07 12:51:33 +01:00
parent 2e86a4befb
commit caddfc68fb
2 changed files with 1 additions and 6 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
# CLAUDE.md # CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository. Spreche mit mir auf Deutsch! (Communicate with me in German!)
## Projektübersicht ## Projektübersicht
-5
View File
@@ -6,17 +6,12 @@ from ui.MainWindow import MainWindow
from ui.AppSettings import AppSettingsDlg from ui.AppSettings import AppSettingsDlg
from conf import app_settings from conf import app_settings
# import qdarktheme
def main(): def main():
"""Haupteinstiegspunkt der Anwendung.""" """Haupteinstiegspunkt der Anwendung."""
# QApplication-Instanz erstellen # QApplication-Instanz erstellen
app = QApplication(sys.argv) app = QApplication(sys.argv)
# Dark Theme aktivieren
# qdarktheme.setup_theme("auto")
# Hauptfenster erstellen # Hauptfenster erstellen
window = MainWindow() window = MainWindow()