1# -*- coding: utf-8 -*-
2#
3# Copyright © 2009- The Spyder Development Team
4#
5# Licensed under the terms of the MIT License
6# (see LICENSE.txt for details)
7
8"""QtHelp Wrapper."""
9
10import warnings
11
12from . import PYQT5
13from . import PYQT4
14from . import PYSIDE
15from . import PYSIDE2
16
17if PYQT5:
18    from PyQt5.QtHelp import *
19elif PYSIDE2:
20    from PySide2.QtHelp import *
21elif PYQT4:
22    from PyQt4.QtHelp import *
23elif PYSIDE:
24    from PySide.QtHelp import *
25