diff --git a/crates/ruff_notebook/src/notebook.rs b/crates/ruff_notebook/src/notebook.rs index 6fd1a603195df..804f836344949 100644 --- a/crates/ruff_notebook/src/notebook.rs +++ b/crates/ruff_notebook/src/notebook.rs @@ -173,7 +173,7 @@ impl Notebook { loop { let new_id = uuid::Builder::from_random_bytes(rng.gen()) .into_uuid() - .as_hyphenated() + .as_simple() .to_string(); if existing_ids.insert(new_id.clone()) {