(
current_fn, tracker_instrumented_fn, result
)
| 907 | """ |
| 908 | |
| 909 | def extract_parameter_value( |
| 910 | current_fn, tracker_instrumented_fn, result |
| 911 | ): |
| 912 | wrapper = tracker_instrumented_fn.__globals__[name] |
| 913 | object.__getattribute__(wrapper, "_extract_bound_parameters")( |
| 914 | current_fn.__globals__[name], result |
| 915 | ) |
| 916 | |
| 917 | return extract_parameter_value |
| 918 |
nothing calls this directly
no test coverage detected