diff options
Diffstat (limited to 'jimbrella/csv_table.py')
-rw-r--r-- | jimbrella/csv_table.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jimbrella/csv_table.py b/jimbrella/csv_table.py index 3c420ff..15263c6 100644 --- a/jimbrella/csv_table.py +++ b/jimbrella/csv_table.py @@ -5,7 +5,7 @@ from .utils import identity class CsvTable: - def __init__(self, path, schema: list[dict]): + def __init__(self, path, schema: list): """A generic CSV table of data, and basic I/O operations. The first column should be unique. If so, it can be used to index rows, a feature of |