4 # |
4 # |
5 |
5 |
6 """ |
6 """ |
7 Module implementing a dialog to enter the options for a check operation. |
7 Module implementing a dialog to enter the options for a check operation. |
8 """ |
8 """ |
9 |
|
10 from __future__ import unicode_literals |
|
11 try: |
|
12 str = unicode # __IGNORE_WARNING__ |
|
13 except NameError: |
|
14 pass |
|
15 |
9 |
16 import os |
10 import os |
17 |
11 |
18 from PyQt5.QtCore import pyqtSlot, Qt, QProcess |
12 from PyQt5.QtCore import pyqtSlot, Qt, QProcess |
19 from PyQt5.QtWidgets import QDialog |
13 from PyQt5.QtWidgets import QDialog |