Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add QtQuickWidgets pyqt5_to_pyqt6.py #60128

Merged
merged 3 commits into from
Jan 16, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions scripts/pyqt5_to_pyqt6/pyqt5_to_pyqt6.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@
QtGui,
QtNetwork,
QtPrintSupport,
QtQuickWidgets,
QtSql,
QtSvg,
QtTest,
Expand All @@ -74,6 +75,7 @@
from PyQt6.QtGui import * # noqa: F403
from PyQt6.QtNetwork import * # noqa: F403
from PyQt6.QtPrintSupport import * # noqa: F403
from PyQt6.QtQuickWidgets import * # noqa: F403
from PyQt6.QtSql import * # noqa: F403
from PyQt6.QtTest import * # noqa: F403
from PyQt6.QtWidgets import * # noqa: F403
Expand Down Expand Up @@ -109,6 +111,7 @@
QtXml,
QtNetwork,
QtPrintSupport,
QtQuickWidgets,
3nids marked this conversation as resolved.
Show resolved Hide resolved
Qsci,
]
if qgis_core is not None:
Expand Down
Loading