From c758aca6c641cfa033ddeb6f57cc2f95084bf0a3 Mon Sep 17 00:00:00 2001 From: Erick Ahmed Date: Thu, 9 Jul 2026 23:45:45 +0200 Subject: [PATCH] Drop data column, keeping only the 8 bytes --- src/parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parser.py b/src/parser.py index 5b7b634..5cd641f 100644 --- a/src/parser.py +++ b/src/parser.py @@ -80,7 +80,7 @@ def parse_csv(csv_path: PathLike) -> pl.LazyFrame: ) byte_exprs.append(expr) - lf = lf.with_columns(byte_exprs) + lf = lf.with_columns(byte_exprs).drop("Data") return lf.with_columns([ pl.col("DLC").cast(pl.UInt8),