(self, method_name)
| 798 | def list_scripts_for_method(self, method_name): |
| 799 | if method_name in ('before_component', 'after_component'): |
| 800 | return self.scripts |
| 801 | else: |
| 802 | return self.alwayson_scripts |
| 803 | |
| 804 | def create_ordered_callbacks_list(self, method_name, *, enable_user_sort=True): |
| 805 | script_list = self.list_scripts_for_method(method_name) |
| 806 | category = f'script_{method_name}' |
| 807 | callbacks = [] |
no outgoing calls
no test coverage detected