@@ -15,7 +15,7 @@ impl ClientRef {
1515 py : Python < ' p > ,
1616 call : RpcCall ,
1717 ) -> PyResult < Bound < ' p , PyAny > > {
18- use temporal_client :: WorkflowService ;
18+ use temporalio_client :: WorkflowService ;
1919 let mut retry_client = self . retry_client . clone ( ) ;
2020 self . runtime . future_into_py ( py, async move {
2121 let bytes = match call. rpc . as_str ( ) {
@@ -566,7 +566,7 @@ impl ClientRef {
566566 py : Python < ' p > ,
567567 call : RpcCall ,
568568 ) -> PyResult < Bound < ' p , PyAny > > {
569- use temporal_client :: OperatorService ;
569+ use temporalio_client :: OperatorService ;
570570 let mut retry_client = self . retry_client . clone ( ) ;
571571 self . runtime . future_into_py ( py, async move {
572572 let bytes = match call. rpc . as_str ( ) {
@@ -628,7 +628,7 @@ impl ClientRef {
628628 }
629629
630630 fn call_cloud_service < ' p > ( & self , py : Python < ' p > , call : RpcCall ) -> PyResult < Bound < ' p , PyAny > > {
631- use temporal_client :: CloudService ;
631+ use temporalio_client :: CloudService ;
632632 let mut retry_client = self . retry_client . clone ( ) ;
633633 self . runtime . future_into_py ( py, async move {
634634 let bytes = match call. rpc . as_str ( ) {
@@ -842,7 +842,7 @@ impl ClientRef {
842842 }
843843
844844 fn call_test_service < ' p > ( & self , py : Python < ' p > , call : RpcCall ) -> PyResult < Bound < ' p , PyAny > > {
845- use temporal_client :: TestService ;
845+ use temporalio_client :: TestService ;
846846 let mut retry_client = self . retry_client . clone ( ) ;
847847 self . runtime . future_into_py ( py, async move {
848848 let bytes = match call. rpc . as_str ( ) {
@@ -881,7 +881,7 @@ impl ClientRef {
881881 }
882882
883883 fn call_health_service < ' p > ( & self , py : Python < ' p > , call : RpcCall ) -> PyResult < Bound < ' p , PyAny > > {
884- use temporal_client :: HealthService ;
884+ use temporalio_client :: HealthService ;
885885 let mut retry_client = self . retry_client . clone ( ) ;
886886 self . runtime . future_into_py ( py, async move {
887887 let bytes = match call. rpc . as_str ( ) {
0 commit comments