MCPcopy Create free account
hub / github.com/bitcraze/crazyflie-lib-python / call

Method call

cflib/utils/callbacks.py:51–55  ·  view source on GitHub ↗

Call the callbacks registered with the arguments args

(self, *args)

Source from the content-addressed store, hash-verified

49 self.callbacks.remove(cb)
50
51 def call(self, *args):
52 """ Call the callbacks registered with the arguments args """
53 copy_of_callbacks = list(self.callbacks)
54 for cb in copy_of_callbacks:
55 cb(*args)

Calls

no outgoing calls