spreadsheet

terminal spreadsheet application
git clone https://git.ce9e.org/spreadsheet.git

commit
13b37062afeec5a888192cdae8601c0d58210644
parent
b4bd01cb79523107d4cd3a545a8512bce702fe4b
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2024-07-05 17:36
fixup split

Diffstat

M sheet/__main__.py 1 -

1 files changed, 0 insertions, 1 deletions


diff --git a/sheet/__main__.py b/sheet/__main__.py

@@ -3,7 +3,6 @@ import sys
    3     3 from .csv import load_csv
    4     4 from .term import render
    5     5 
    6    -1 
    7     6 with open(sys.argv[1]) as fh:
    8     7     sheet = load_csv(fh)
    9     8