1130:3e9f0330f833 | 1131:7781e396c903 |
---|---|
18 """ | 18 """ |
19 Constructor | 19 Constructor |
20 | 20 |
21 @param parent reference to the parent object (QObject) | 21 @param parent reference to the parent object (QObject) |
22 """ | 22 """ |
23 QObject.__init__(self, parent) | 23 super().__init__(parent) |
24 | 24 |
25 def createRequest(self, op, request, outgoingData=None): | 25 def createRequest(self, op, request, outgoingData=None): |
26 """ | 26 """ |
27 Protected method to create a request. | 27 Protected method to create a request. |
28 | 28 |