src/eric7/Cooperation/CooperationClient.py

branch
eric7
changeset 9473
3f23dbf37dbe
parent 9413
80c06d472826
child 9653
e67609152c5e
equal deleted inserted replaced
9472:5798ee4a8807 9473:3f23dbf37dbe
7 Module implementing the client of the cooperation package. 7 Module implementing the client of the cooperation package.
8 """ 8 """
9 9
10 import collections 10 import collections
11 11
12 from PyQt6.QtCore import QObject, pyqtSignal, QProcess 12 from PyQt6.QtCore import QObject, QProcess, pyqtSignal
13 from PyQt6.QtNetwork import QHostInfo, QHostAddress, QAbstractSocket, QNetworkInterface 13 from PyQt6.QtNetwork import QAbstractSocket, QHostAddress, QHostInfo, QNetworkInterface
14 14
15 from eric7 import Preferences
16
17 from .Connection import Connection
15 from .CooperationServer import CooperationServer 18 from .CooperationServer import CooperationServer
16 from .Connection import Connection
17
18 from eric7 import Preferences
19 19
20 20
21 class CooperationClient(QObject): 21 class CooperationClient(QObject):
22 """ 22 """
23 Class implementing the client of the cooperation package. 23 Class implementing the client of the cooperation package.

eric ide

mercurial