-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
27a916b
commit 34c9188
Showing
3 changed files
with
19 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,15 @@ | ||
from PySide2 import QtCore | ||
from PySide2.QtCore import Qt, QEvent, QObject, QRect, QSettings, QTimer, QDir | ||
from PySide2.QtWidgets import QApplication, QWidget, QMainWindow, QDockWidget, QMessageBox | ||
from PySide2.QtGui import QCloseEvent, QIcon, QWindow, QImage, QPixmap | ||
try: | ||
from PySide6 import QtCore | ||
from PySide6.QtCore import Qt, QEvent, QObject, QRect, QSettings, QTimer, QDir | ||
from PySide6.QtWidgets import QApplication, QWidget, QMainWindow, QDockWidget, QMessageBox | ||
from PySide6.QtGui import QCloseEvent, QIcon, QWindow, QImage, QPixmap | ||
except ImportError: | ||
pass | ||
|
||
try: | ||
from PySide2 import QtCore | ||
from PySide2.QtCore import Qt, QEvent, QObject, QRect, QSettings, QTimer, QDir | ||
from PySide2.QtWidgets import QApplication, QWidget, QMainWindow, QDockWidget, QMessageBox | ||
from PySide2.QtGui import QCloseEvent, QIcon, QWindow, QImage, QPixmap | ||
except ImportError: | ||
pass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters