# wait\_for\_test\_recalibration\_session

```python
def wait_for_test_recalibration_session(
    *,
    test_recalibration_session: TestRecalibrationSession,
    timeout_s: int = 180,
) -> TestRecalibrationSession
```

### Parameters

| Arguments                    | Description                                                                                                                                                                                                        |
| ---------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| `test_recalibration_session` | The dbnl [TestRecalibrationSession](https://docs.dbnl.com/v0.21.x/using-distributional/python-sdk/sdk-objects/testrecalibrationsession) to wait for completion.                                                    |
| `timeout_s`                  | An optional timeout (in seconds) parameter for waiting for the TestRecalibrationSession to complete. An exception will be raised if  the TestRecalibrationSession did not complete before `timeout_s` has elapsed. |

### Returns

| Type                       | Description                            |
| -------------------------- | -------------------------------------- |
| `TestRecalibrationSession` | The completed TestRecalibrationSession |
