Merge pull request #4238 from pypeclub/feature/OP-4655_qtpy-in-flame

Flame: Use qtpy in flame
This commit is contained in:
Jakub Trllo 2022-12-19 22:22:14 +01:00 committed by GitHub
commit f9a2b961de
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 5 deletions

View file

@ -1,5 +1,5 @@
import os
from Qt import QtWidgets
from qtpy import QtWidgets
from copy import deepcopy
from pprint import pformat
from openpype.tools.utils.host_tools import HostToolsHelper

View file

@ -5,7 +5,7 @@ from copy import deepcopy
from xml.etree import ElementTree as ET
import qargparse
from Qt import QtCore, QtWidgets
from qtpy import QtCore, QtWidgets
from openpype import style
from openpype.lib import Logger, StringTemplate

View file

@ -1,4 +1,4 @@
from Qt import QtWidgets, QtCore
from qtpy import QtWidgets, QtCore
import uiwidgets
import app_utils

View file

@ -1,4 +1,4 @@
from Qt import QtWidgets, QtCore
from qtpy import QtWidgets, QtCore
class FlameLabel(QtWidgets.QLabel):

View file

@ -1,6 +1,6 @@
from __future__ import print_function
import sys
from Qt import QtWidgets
from qtpy import QtWidgets
from pprint import pformat
import atexit