@@ -63,12 +63,12 @@ fn connect_client<'a>(
6363 runtime_ref : & runtime:: RuntimeRef ,
6464 config : client:: ClientConfig ,
6565) -> PyResult < & ' a PyAny > {
66- client:: connect_client ( py, & runtime_ref, config)
66+ client:: connect_client ( py, runtime_ref, config)
6767}
6868
6969#[ pyfunction]
7070fn new_metric_meter ( runtime_ref : & runtime:: RuntimeRef ) -> Option < metric:: MetricMeterRef > {
71- metric:: new_metric_meter ( & runtime_ref)
71+ metric:: new_metric_meter ( runtime_ref)
7272}
7373
7474#[ pyfunction]
@@ -77,7 +77,7 @@ fn init_runtime(telemetry_config: runtime::TelemetryConfig) -> PyResult<runtime:
7777}
7878
7979#[ pyfunction]
80- fn raise_in_thread < ' a > ( py : Python < ' a > , thread_id : std:: os:: raw:: c_long , exc : & PyAny ) -> bool {
80+ fn raise_in_thread ( py : Python , thread_id : std:: os:: raw:: c_long , exc : & PyAny ) -> bool {
8181 runtime:: raise_in_thread ( py, thread_id, exc)
8282}
8383
@@ -87,7 +87,7 @@ fn start_dev_server<'a>(
8787 runtime_ref : & runtime:: RuntimeRef ,
8888 config : testing:: DevServerConfig ,
8989) -> PyResult < & ' a PyAny > {
90- testing:: start_dev_server ( py, & runtime_ref, config)
90+ testing:: start_dev_server ( py, runtime_ref, config)
9191}
9292
9393#[ pyfunction]
@@ -96,7 +96,7 @@ fn start_test_server<'a>(
9696 runtime_ref : & runtime:: RuntimeRef ,
9797 config : testing:: TestServerConfig ,
9898) -> PyResult < & ' a PyAny > {
99- testing:: start_test_server ( py, & runtime_ref, config)
99+ testing:: start_test_server ( py, runtime_ref, config)
100100}
101101
102102#[ pyfunction]
@@ -105,7 +105,7 @@ fn new_worker(
105105 client : & client:: ClientRef ,
106106 config : worker:: WorkerConfig ,
107107) -> PyResult < worker:: WorkerRef > {
108- worker:: new_worker ( & runtime_ref, & client, config)
108+ worker:: new_worker ( runtime_ref, client, config)
109109}
110110
111111#[ pyfunction]
@@ -114,5 +114,5 @@ fn new_replay_worker<'a>(
114114 runtime_ref : & runtime:: RuntimeRef ,
115115 config : worker:: WorkerConfig ,
116116) -> PyResult < & ' a PyTuple > {
117- worker:: new_replay_worker ( py, & runtime_ref, config)
117+ worker:: new_replay_worker ( py, runtime_ref, config)
118118}
0 commit comments