CHANGES: link to the PR for the git-cola-sequence-editor correction
[git-cola.git] / qtpy / QtNetwork.py
blob2c4e54765df83e0d5c572f2ae4e07ca4f690bfa8
1 # -----------------------------------------------------------------------------
2 # Copyright © 2014-2015 Colin Duquesnoy
3 # Copyright © 2009- The Spyder Development Team
5 # Licensed under the terms of the MIT License
6 # (see LICENSE.txt for details)
7 # -----------------------------------------------------------------------------
9 """Provides QtNetwork classes and functions."""
11 from . import PYQT5, PYQT6, PYSIDE2, PYSIDE6
13 if PYQT5:
14 from PyQt5.QtNetwork import *
15 elif PYQT6:
16 from PyQt6.QtNetwork import *
17 elif PYSIDE2:
18 from PySide2.QtNetwork import *
19 elif PYSIDE6:
20 from PySide6.QtNetwork import *