Apply clippy suggestion

This commit is contained in:
MTRNord 2022-12-06 15:17:15 +01:00
parent 9673c20342
commit ff58efb398
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ async fn main() -> Result<()> {
let mut graph = Graph::new();
let bundle =
SavedModelBundle::load(&SessionOptions::new(), &["serve"], &mut graph, model_path)?;
SavedModelBundle::load(&SessionOptions::new(), ["serve"], &mut graph, model_path)?;
GRAPH.set(graph).unwrap();
MODEL.set(bundle).unwrap();