sequenceeditor: self.diffwidget -> self.diff typofix
[git-cola.git] / qtpy / QtPositioning.py
blob2b46d3568971acc13a482489e12b8335499a34bf
1 # -*- coding: utf-8 -*-
2 # -----------------------------------------------------------------------------
3 # Copyright 2020 Antonio Valentino
5 # Licensed under the terms of the MIT License
6 # (see LICENSE.txt for details)
7 # -----------------------------------------------------------------------------
8 """Provides QtPositioning classes and functions."""
10 # Local imports
11 from . import PYQT5, PYSIDE2, PythonQtError
13 if PYQT5:
14 from PyQt5.QtPositioning import *
15 elif PYSIDE2:
16 from PySide2.QtPositioning import *
17 else:
18 raise PythonQtError('No Qt bindings could be found')