Skip to content

Commit

Permalink
fix: Update tabbedterminal.py for PyQT issues in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
meramsey committed Feb 6, 2022
1 parent 22a72e1 commit 74f9aba
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions src/wizardwebssh/tabbedterminal.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,16 @@
import time
import os
import sys
from PyQt6 import QtGui, QtWidgets, QtCore
from PyQt6.QtCore import pyqtSignal as Signal, pyqtSlot as Slot, Qt
from PyQt6.QtCore import QUrl
from PyQt6.QtGui import QIcon, QPalette, QColor
from PyQt6.QtWebEngineWidgets import QWebEngineView
from PyQt6.QtWidgets import QTabWidget, QApplication, QInputDialog, QFileDialog, QPushButton, QStyle

try:
from PyQt6 import QtGui, QtWidgets, QtCore
from PyQt6.QtCore import pyqtSignal as Signal, pyqtSlot as Slot, Qt
from PyQt6.QtCore import QUrl
from PyQt6.QtGui import QIcon, QPalette, QColor
from PyQt6.QtWebEngineWidgets import QWebEngineView
from PyQt6.QtWidgets import QTabWidget, QApplication, QInputDialog, QFileDialog, QPushButton, QStyle
except Exception as e:
print(f"Exception: {e}")
# if platform.system() == "Linux":
# try:
# import ctypes
Expand Down

0 comments on commit 74f9aba

Please sign in to comment.