Return a list of argument names the callback (most likely) accepts as keyword arguments. If the callback is a decorated function, try to recover the original function before inspection.
(self)
| 577 | return func |
| 578 | |
| 579 | def get_callback_args(self): |
| 580 | """ Return a list of argument names the callback (most likely) accepts |
| 581 | as keyword arguments. If the callback is a decorated function, try |
| 582 | to recover the original function before inspection. """ |
| 583 | return getargspec(self.get_undecorated_callback())[0] |
| 584 | |
| 585 | def get_config(self, key, default=None): |
| 586 | """ Lookup a config field and return its value, first checking the |
nothing calls this directly
no test coverage detected