MCPcopy Create free account
hub / github.com/ReactDev1337/ReactSelfbot / update

Method update

notify.py:56–73  ·  view source on GitHub ↗

Notify Update. Notify method for query result. This method will typically be overridden by higher level classes that will inherit from it. Keyword Arguments: self -- This object. result -- Object of type QueryResult() conta

(self, result)

Source from the content-addressed store, hash-verified

54 return
55
56 def update(self, result):
57 """Notify Update.
58
59 Notify method for query result. This method will typically be
60 overridden by higher level classes that will inherit from it.
61
62 Keyword Arguments:
63 self -- This object.
64 result -- Object of type QueryResult() containing
65 results for this query.
66
67 Return Value:
68 Nothing.
69 """
70
71 self.result = result
72
73 return
74
75 def finish(self, message=None):
76 """Notify Finish.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected