launcher is using qtpy import instead of Qt

This commit is contained in:
Jakub Trllo 2022-12-13 15:16:29 +01:00
parent 9f15cd150e
commit 8a40489d28
7 changed files with 7 additions and 7 deletions

View file

@ -1,6 +1,6 @@
import os
from Qt import QtWidgets, QtGui
from qtpy import QtWidgets, QtGui
from openpype import PLUGINS_DIR
from openpype import style

View file

@ -1,4 +1,4 @@
from Qt import QtCore
from qtpy import QtCore
ACTION_ROLE = QtCore.Qt.UserRole

View file

@ -1,5 +1,5 @@
import time
from Qt import QtCore, QtWidgets, QtGui
from qtpy import QtCore, QtWidgets, QtGui
from .constants import (
ANIMATION_START_ROLE,
ANIMATION_STATE_ROLE,

View file

@ -1,5 +1,5 @@
import os
from Qt import QtGui
from qtpy import QtGui
import qtawesome
from openpype import resources

View file

@ -6,7 +6,7 @@ import collections
import time
import appdirs
from Qt import QtCore, QtGui
from qtpy import QtCore, QtGui
import qtawesome
from openpype.client import (

View file

@ -1,7 +1,7 @@
import copy
import time
import collections
from Qt import QtWidgets, QtCore, QtGui
from qtpy import QtWidgets, QtCore, QtGui
import qtawesome
from openpype.tools.flickcharm import FlickCharm

View file

@ -1,7 +1,7 @@
import copy
import logging
from Qt import QtWidgets, QtCore, QtGui
from qtpy import QtWidgets, QtCore, QtGui
from openpype import style
from openpype import resources