fix import of QtXml

This commit is contained in:
iLLiCiTiT 2022-12-19 21:47:21 +01:00
parent 18c0a7fb33
commit 4c214cabe4

View file

@ -15,7 +15,11 @@ import secrets
import shutil
import hiero
from qtpy import QtWidgets, QtCore, QtXml
from qtpy import QtWidgets, QtCore
try:
from PySide import QtXml
except ImportError:
from PySide2 import QtXml
from openpype.client import get_project
from openpype.settings import get_project_settings