Addon Manager: Qt6 migration part 1, use PySide

Migrate all uses of "import PySide 2" to use "import PySide" so that the
FreeCAD-provided wrappers can switch between Qt versions.
This commit is contained in:
Chris Hennes
2022-11-04 22:37:59 -05:00
committed by wwmayer
parent e94513b97d
commit c28da00c15
22 changed files with 56 additions and 58 deletions

View File

@@ -32,7 +32,7 @@ from typing import Optional, Any
from urllib.parse import urlparse
from PySide2 import QtCore, QtWidgets
from PySide import QtCore, QtWidgets
import FreeCAD
import FreeCADGui