We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99fbc62 commit edce8e4Copy full SHA for edce8e4
1 file changed
src/cortex-exec/src/runner.rs
@@ -192,7 +192,11 @@ impl ExecRunner {
192
self.client = Some(client);
193
}
194
195
- Ok(self.client.as_ref().expect("Client should be initialized in init_client").as_ref())
+ Ok(self
196
+ .client
197
+ .as_ref()
198
+ .expect("Client should be initialized in init_client")
199
+ .as_ref())
200
201
202
/// Get filtered tool definitions based on options.
0 commit comments