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