Fix typo that gave AttributeError

This commit is contained in:
2026-07-13 18:27:24 +02:00
parent 835ab0fc68
commit 44f9c5ad21
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -1,5 +1,6 @@
# Repo ignores
data/
IDEAS.md
# Byte-compiled / optimized / DLL files
__pycache__/
@@ -281,3 +282,7 @@ Backups.backupdb
.MobileBackups.trash
MobileBackups.trash
tmbootpicker.efi
CACHEDIR.TAG
bin/
uv.lock
.lock
+1 -1
View File
@@ -68,7 +68,7 @@ def decode_j1939_frames(df: pl.DataFrame) -> pl.DataFrame:
if __name__ == "__main__":
parser = argparse.ArgumentParser(description="J1939 decoder")
parser.add_argument("input_parquet", help="Path to the raw .parquet file")
parser.add_argument("output_paquet", help="Path to save the decoded .parquet file")
parser.add_argument("output_parquet", help="Path to save the decoded .parquet file")
args = parser.parse_args()
df = pl.scan_parquet(args.input_parquet).collect()