Fix typo that gave AttributeError
This commit is contained in:
@@ -1,5 +1,6 @@
|
|||||||
# Repo ignores
|
# Repo ignores
|
||||||
data/
|
data/
|
||||||
|
IDEAS.md
|
||||||
|
|
||||||
# Byte-compiled / optimized / DLL files
|
# Byte-compiled / optimized / DLL files
|
||||||
__pycache__/
|
__pycache__/
|
||||||
@@ -281,3 +282,7 @@ Backups.backupdb
|
|||||||
.MobileBackups.trash
|
.MobileBackups.trash
|
||||||
MobileBackups.trash
|
MobileBackups.trash
|
||||||
tmbootpicker.efi
|
tmbootpicker.efi
|
||||||
|
CACHEDIR.TAG
|
||||||
|
bin/
|
||||||
|
uv.lock
|
||||||
|
.lock
|
||||||
|
|||||||
+1
-1
@@ -68,7 +68,7 @@ def decode_j1939_frames(df: pl.DataFrame) -> pl.DataFrame:
|
|||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
parser = argparse.ArgumentParser(description="J1939 decoder")
|
parser = argparse.ArgumentParser(description="J1939 decoder")
|
||||||
parser.add_argument("input_parquet", help="Path to the raw .parquet file")
|
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()
|
args = parser.parse_args()
|
||||||
|
|
||||||
df = pl.scan_parquet(args.input_parquet).collect()
|
df = pl.scan_parquet(args.input_parquet).collect()
|
||||||
|
|||||||
Reference in New Issue
Block a user