Skip to content

Commit

Permalink
fix(web_viewer): fix import order
Browse files Browse the repository at this point in the history
  • Loading branch information
Guts committed Aug 1, 2024
1 parent 01431c8 commit 6d9f8f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qtribu/logic/web_viewer.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
# PyQGIS
from qgis.PyQt.QtCore import QCoreApplication, Qt
from qgis.PyQt.QtGui import QDesktopServices
from qgis.PyQt.QtWidgets import QVBoxLayout, QWidget

try:
QCoreApplication.setAttribute(Qt.AA_ShareOpenGLContexts)
from qgis.PyQt.QtWebEngineWidgets import QWebEngineView as QWebView
except Exception:
from qgis.PyQt.QtWebKitWidgets import QWebView
from qgis.PyQt.QtWidgets import QVBoxLayout, QWidget

# project
from qtribu.toolbelt import NetworkRequestsManager, PlgLogger, PlgOptionsManager
Expand Down

0 comments on commit 6d9f8f9

Please sign in to comment.