You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: resolve mypy type errors in QSettings and QApplication usage
QSettings.value() returns `object` in PySide6 stubs — cast with
int(str(...)) for numeric values and bool(...) for booleans.
QApplication.instance() returns QCoreApplication in stubs, but
setStyle/setPalette are QApplication-only — use cast(QApplication, ...)
to restore correct type narrowing.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
0 commit comments