diff --git a/qiskit_ibm_runtime/runtime_job.py b/qiskit_ibm_runtime/runtime_job.py index 24652edf3..186d9703f 100644 --- a/qiskit_ibm_runtime/runtime_job.py +++ b/qiskit_ibm_runtime/runtime_job.py @@ -195,7 +195,9 @@ def status(self) -> JobStatus: ( "In a future release of qiskit-ibm-runtime no sooner than 3 months " "after the release date of 0.30.0, RuntimeJob.status() will be returned as a string " - "instead of an instance of `JobStatus`." + "instead of an instance of `JobStatus`. " + "To prepare for this change, you can use the idiom " + "`status.name if isinstance(status, JobStatus) else status`." ), DeprecationWarning, stacklevel=2,