mirror of
https://github.com/ankitects/anki.git
synced 2025-09-23 00:12:25 -04:00

This reverts commit 04228de666
.
Anki 25.01 Beta 1 revealed a bunch of regressions with the latest
Qt, and zero reports of improvements from it, so we'll be better off
holding off on it for now, and perhaps reporting the deadkeys issue
to Qt once we've got a proper reproduction process.
21 lines
653 B
Python
21 lines
653 B
Python
# Copyright: Ankitects Pty Ltd and contributors
|
|
# License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
# make sure not to optimize imports on this file
|
|
# pylint: disable=unused-import
|
|
|
|
"""
|
|
PyQt6 imports
|
|
"""
|
|
|
|
from PyQt6 import sip
|
|
from PyQt6.QtCore import *
|
|
|
|
# conflicting Qt and qFuzzyCompare definitions require an ignore
|
|
from PyQt6.QtGui import * # type: ignore[misc,assignment]
|
|
from PyQt6.QtNetwork import QLocalServer, QLocalSocket, QNetworkProxy
|
|
from PyQt6.QtQuick import *
|
|
from PyQt6.QtWebChannel import QWebChannel
|
|
from PyQt6.QtWebEngineCore import *
|
|
from PyQt6.QtWebEngineWidgets import *
|
|
from PyQt6.QtWidgets import *
|