Have ran into an issue where I'm not getting expected imports from the expected module.
import qtpy
if qtpy.API_NAME in ("PyQt5", "PySide2"):
from qtpy.QtWidgets import QUndoStack
elif qtpy.API_NAME in ("PyQt6", "PySide6"):
from qtpy.QtGui import QUndoStack
else:
raise ValueError(f"Invalid QT_API: '{qtpy.API_NAME}'")
is this something qtpy could explain/fix?