Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Flame: Use qtpy in flame #4238

Merged
merged 1 commit into from
Dec 19, 2022
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion openpype/hosts/flame/api/menu.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion openpype/hosts/flame/api/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
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
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from Qt import QtWidgets, QtCore
from qtpy import QtWidgets, QtCore

import uiwidgets
import app_utils
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from Qt import QtWidgets, QtCore
from qtpy import QtWidgets, QtCore


class FlameLabel(QtWidgets.QLabel):
Expand Down
2 changes: 1 addition & 1 deletion openpype/hosts/flame/startup/openpype_in_flame.py
Original file line number Diff line number Diff line change
@@ -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

Expand Down