From 1c3add98fdf8c7d2a480eb5b31ce4c89738f3d81 Mon Sep 17 00:00:00 2001 From: Andrew Nolte Date: Fri, 11 Oct 2024 12:08:19 -0400 Subject: [PATCH] remove col --- src/speedscope.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/speedscope.rs b/src/speedscope.rs index 3cc0725c..c78a3ab9 100644 --- a/src/speedscope.rs +++ b/src/speedscope.rs @@ -99,7 +99,8 @@ struct Frame { name: String, file: Option, line: Option, - col: Option, + // col is optional, and not written by py-spy + // col: Option, } #[derive(Debug, Serialize, Deserialize)] @@ -185,7 +186,6 @@ impl Frame { } else { None }, - col: None, } } }