src/eric7/MicroPython/UnknownDevicesDialog.py

branch
eric7
changeset 9473
3f23dbf37dbe
parent 9413
80c06d472826
child 9482
a2bc06a54d9d
equal deleted inserted replaced
9472:5798ee4a8807 9473:3f23dbf37dbe
5 5
6 """ 6 """
7 Module implementing a dialog to manage the list of unknown devices. 7 Module implementing a dialog to manage the list of unknown devices.
8 """ 8 """
9 9
10 from PyQt6.QtCore import pyqtSlot, Qt, QUrl, QUrlQuery 10 from PyQt6.QtCore import Qt, QUrl, QUrlQuery, pyqtSlot
11 from PyQt6.QtGui import QDesktopServices 11 from PyQt6.QtGui import QDesktopServices
12 from PyQt6.QtWidgets import QDialog, QListWidgetItem 12 from PyQt6.QtWidgets import QDialog, QListWidgetItem
13 13
14 from eric7 import Preferences
14 from eric7.EricWidgets import EricMessageBox 15 from eric7.EricWidgets import EricMessageBox
16 from eric7.UI.Info import BugAddress
15 17
16 from .Ui_UnknownDevicesDialog import Ui_UnknownDevicesDialog 18 from .Ui_UnknownDevicesDialog import Ui_UnknownDevicesDialog
17
18 from eric7 import Preferences
19 from eric7.UI.Info import BugAddress
20 19
21 20
22 class UnknownDevicesDialog(QDialog, Ui_UnknownDevicesDialog): 21 class UnknownDevicesDialog(QDialog, Ui_UnknownDevicesDialog):
23 """ 22 """
24 Class implementing a dialog to manage the list of unknown devices. 23 Class implementing a dialog to manage the list of unknown devices.

eric ide

mercurial